diff options
author | Cameron Zwarich <zwarich@mozilla.com> | 2014-09-25 13:48:07 -0700 |
---|---|---|
committer | Cameron Zwarich <zwarich@mozilla.com> | 2014-09-25 13:48:07 -0700 |
commit | ce2484a7ce691c620be14db0939a0e7e117d6a39 (patch) | |
tree | 50e60c86e8f0afc2729d6082bd603b976e6cf4a6 /components/script/dom | |
parent | 1fba32af9ff68db73768b4732d003ea7aad09b28 (diff) | |
download | servo-ce2484a7ce691c620be14db0939a0e7e117d6a39.tar.gz servo-ce2484a7ce691c620be14db0939a0e7e117d6a39.zip |
Fix trailing whitespace tidy errors
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/bindings/trace.rs | 5 | ||||
-rw-r--r-- | components/script/dom/macros.rs | 3 |
2 files changed, 5 insertions, 3 deletions
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 +) + |