aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2014-08-27 11:46:05 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2014-08-27 11:46:05 -0700
commit9eba9b668af7c684d546262ec7c815669275f591 (patch)
treebbee1d750c88efc863df19b2033ac64eea5d8bdb /src
parent2aef2c3e58b903418f95922856cbc7e9a35b5260 (diff)
downloadservo-9eba9b668af7c684d546262ec7c815669275f591.tar.gz
servo-9eba9b668af7c684d546262ec7c815669275f591.zip
Fix comment syntax
Diffstat (limited to 'src')
-rw-r--r--src/components/layout/fragment.rs2
1 files changed, 1 insertions, 1 deletions
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()