diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-09-01 08:33:02 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-09-01 08:33:02 -0600 |
commit | 15de679f115f06a8ce33625d77e820b049730d4b (patch) | |
tree | 9edaeb1246db818ab13f7cfd4e4a06255b0a54ba /components/script/dom | |
parent | 8a15f941ed5e4b0697556bfafcfbb02be96a4569 (diff) | |
parent | 17663315dd64bba0ebb64c908f9beacc2e352d3a (diff) | |
download | servo-15de679f115f06a8ce33625d77e820b049730d4b.tar.gz servo-15de679f115f06a8ce33625d77e820b049730d4b.zip |
Auto merge of #7468 - JoshTheGoldfish:Issue7460, r=jdm
Making test-tidy check that = have space after them
For issue #7460. Need to ensure compatibility with #7390.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7468)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/bindings/num.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/num.rs b/components/script/dom/bindings/num.rs index 87c5e38a3bb..1169ccdec7f 100644 --- a/components/script/dom/bindings/num.rs +++ b/components/script/dom/bindings/num.rs @@ -9,7 +9,7 @@ use num::Float; use std::ops::Deref; /// Encapsulates the IDL restricted float type. -#[derive(JSTraceable,Clone,Eq,PartialEq)] +#[derive(JSTraceable, Clone, Eq, PartialEq)] pub struct Finite<T: Float>(T); unsafe impl<T: Float> Zeroable for Finite<T> {} |