Fix trailing whitespace tidy errors

This commit is contained in:
Cameron Zwarich 2014-09-25 13:48:07 -07:00
parent 1fba32af9f
commit ce2484a7ce
4 changed files with 8 additions and 5 deletions

View file

@ -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
}
}
}

View file

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