From 9eba9b668af7c684d546262ec7c815669275f591 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Wed, 27 Aug 2014 11:46:05 -0700 Subject: [PATCH] Fix comment syntax --- src/components/layout/fragment.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/fragment.rs b/src/components/layout/fragment.rs index baee693e21d..42386a6f5a6 100644 --- a/src/components/layout/fragment.rs +++ b/src/components/layout/fragment.rs @@ -1421,7 +1421,7 @@ impl Fragment { pub fn can_merge_with_fragment(&self, other: &Fragment) -> bool { match (&self.specific, &other.specific) { (&UnscannedTextFragment(_), &UnscannedTextFragment(_)) => { - /// FIXME: Should probably use a whitelist of styles that can safely differ (#3165) + // FIXME: Should probably use a whitelist of styles that can safely differ (#3165) self.font_style() == other.font_style() && self.text_decoration() == other.text_decoration() && self.white_space() == other.white_space()