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/layout/incremental.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/layout/incremental.rs')
-rw-r--r-- | components/layout/incremental.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/incremental.rs b/components/layout/incremental.rs index 623fa4685fe..14205b32cb5 100644 --- a/components/layout/incremental.rs +++ b/components/layout/incremental.rs @@ -42,8 +42,8 @@ bitflags! { bitflags! { flags SpecialRestyleDamage: u8 { - #[doc="If this flag is set, we need to reflow the entire document. This is more or less a \ - temporary hack to deal with cases that we don't handle incrementally yet."] + #[doc = "If this flag is set, we need to reflow the entire document. This is more or less a \ + temporary hack to deal with cases that we don't handle incrementally yet."] const REFLOW_ENTIRE_DOCUMENT = 0x01, } } |