aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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()