diff options
-rw-r--r-- | components/layout/table.rs | 2 | ||||
-rw-r--r-- | components/plugins/lints.rs | 3 | ||||
-rw-r--r-- | components/script/dom/bindings/trace.rs | 5 | ||||
-rw-r--r-- | components/script/dom/macros.rs | 3 |
4 files changed, 8 insertions, 5 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs index d5d327b5d7a..d48b845bc98 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -295,7 +295,7 @@ impl Flow for TableFlow { _ => {} } - // As tables are always wrapped inside a table wrapper, they are never impacted by floats. + // As tables are always wrapped inside a table wrapper, they are never impacted by floats. self.block_flow.base.flags.set_impacted_by_left_floats(false); self.block_flow.base.flags.set_impacted_by_right_floats(false); diff --git a/components/plugins/lints.rs b/components/plugins/lints.rs index 4a1bbb85f09..4b349e014b4 100644 --- a/components/plugins/lints.rs +++ b/components/plugins/lints.rs @@ -140,4 +140,5 @@ impl LintPass for UnrootedPass { _ => {} } } -}
\ No newline at end of file +} + diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs index 5fcb1c78673..5f2d9e524fc 100644 --- a/components/script/dom/bindings/trace.rs +++ b/components/script/dom/bindings/trace.rs @@ -22,7 +22,7 @@ //! 5. `trace_object()` calls `JS_CallTracer()` to notify the GC, which will //! add the object to the graph, and will trace that object as well. //! -//! The untraceable!() macro adds an empty implementation of JSTraceable to +//! The untraceable!() macro adds an empty implementation of JSTraceable to //! a datatype. use dom::bindings::js::JS; @@ -236,4 +236,5 @@ impl<'a> JSTraceable for &'a str { fn trace(&self, _: *mut JSTracer) { // Do nothing } -}
\ No newline at end of file +} + diff --git a/components/script/dom/macros.rs b/components/script/dom/macros.rs index 0f85dafc5a1..e9b25a6999a 100644 --- a/components/script/dom/macros.rs +++ b/components/script/dom/macros.rs @@ -63,4 +63,5 @@ macro_rules! untraceable( } } ); -)
\ No newline at end of file +) + |