Merge pull request #3480 from zwarich/trailing-whitespace

Fix trailing whitespace tidy errors

Reviewed-by: larsbergstrom
This commit is contained in:
bors-servo 2014-09-25 17:00:34 -06:00
commit c2d6d8084c
4 changed files with 8 additions and 5 deletions

View file

@ -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_left_floats(false);
self.block_flow.base.flags.set_impacted_by_right_floats(false); self.block_flow.base.flags.set_impacted_by_right_floats(false);

View file

@ -144,4 +144,5 @@ impl LintPass for UnrootedPass {
_ => {} _ => {}
} }
} }
} }

View file

@ -22,7 +22,7 @@
//! 5. `trace_object()` calls `JS_CallTracer()` to notify the GC, which will //! 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. //! 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. //! a datatype.
use dom::bindings::js::JS; use dom::bindings::js::JS;
@ -236,4 +236,5 @@ impl<'a> JSTraceable for &'a str {
fn trace(&self, _: *mut JSTracer) { fn trace(&self, _: *mut JSTracer) {
// Do nothing // Do nothing
} }
} }

View file

@ -63,4 +63,5 @@ macro_rules! untraceable(
} }
} }
); );
) )