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/msg/lib.rs | |
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/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 7c03b73d591..34a87cfd805 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -20,9 +20,9 @@ extern crate util; extern crate url; extern crate style; -#[cfg(target_os="macos")] +#[cfg(target_os = "macos")] extern crate core_foundation; -#[cfg(target_os="macos")] +#[cfg(target_os = "macos")] extern crate io_surface; pub mod compositor_msg; |