From 0eeb73492108b297bd4b4328445456a403622148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 15 Aug 2017 11:23:18 +0200 Subject: [PATCH] style: Remove a few comments on statements. These warn with `unused_doc_comments` on nightly. --- components/style/values/animated/color.rs | 2 +- components/style/values/computed/border.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/style/values/animated/color.rs b/components/style/values/animated/color.rs index 534e72fb932..77575ec2d9d 100644 --- a/components/style/values/animated/color.rs +++ b/components/style/values/animated/color.rs @@ -208,7 +208,7 @@ impl ComputeSquaredDistance for Color { impl ToAnimatedZero for Color { #[inline] fn to_animated_zero(&self) -> Result { - /// FIXME(nox): This does not look correct to me. + // FIXME(nox): This does not look correct to me. Err(()) } } diff --git a/components/style/values/computed/border.rs b/components/style/values/computed/border.rs index 460bf6f759b..9ca98787730 100644 --- a/components/style/values/computed/border.rs +++ b/components/style/values/computed/border.rs @@ -39,7 +39,7 @@ impl BorderImageSideWidth { impl ToAnimatedZero for BorderCornerRadius { #[inline] fn to_animated_zero(&self) -> Result { - /// FIXME(nox): Why? + // FIXME(nox): Why? Err(()) } }