diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-09-03 10:00:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-03 10:00:40 -0400 |
commit | 156b1cc8918a2923f41582fb65f4eb661f84de0c (patch) | |
tree | bc57a1f3e9be41d47e9f64310ed963174b787adb /components/webvr_traits/lib.rs | |
parent | d8446f85a95723dec3a18b05bdd30514a57bddab (diff) | |
parent | 984680714e14d3c3513d1db4cdd8dc3452cb7a6a (diff) | |
download | servo-156b1cc8918a2923f41582fb65f4eb661f84de0c.tar.gz servo-156b1cc8918a2923f41582fb65f4eb661f84de0c.zip |
Auto merge of #21593 - chansuke:format_webvr_traits, r=jdm
Format components webvr_traits #21373
<!-- Please describe your changes on the following line: -->
Format `components/webvr_traits` with `rstfmt` command.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix part of #21373.
- [x] These changes do not require tests because _____
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21593)
<!-- Reviewable:end -->
Diffstat (limited to 'components/webvr_traits/lib.rs')
-rw-r--r-- | components/webvr_traits/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/webvr_traits/lib.rs b/components/webvr_traits/lib.rs index 9fd8c85074b..baf4b20943e 100644 --- a/components/webvr_traits/lib.rs +++ b/components/webvr_traits/lib.rs @@ -6,7 +6,8 @@ extern crate ipc_channel; extern crate msg; -#[macro_use] extern crate serde; +#[macro_use] +extern crate serde; pub extern crate rust_webvr_api as webvr; mod webvr_traits; |