diff options
author | Edwin Cheng <[email protected]> | 2020-01-16 15:48:03 +0000 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-01-16 15:48:03 +0000 |
commit | a766883a751096e5b912b59a14d7b6fc3372c791 (patch) | |
tree | fed416b511e5683976883b047736f0e1ee0d8399 | |
parent | ed8d5c86e3999aeec9a62e69ef065b2c799ecfa0 (diff) |
fix formating
-rw-r--r-- | crates/ra_parser/src/grammar/attributes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_parser/src/grammar/attributes.rs b/crates/ra_parser/src/grammar/attributes.rs index 224f45127..eeae37aef 100644 --- a/crates/ra_parser/src/grammar/attributes.rs +++ b/crates/ra_parser/src/grammar/attributes.rs | |||
@@ -14,7 +14,7 @@ pub(super) fn with_outer_attributes( | |||
14 | ) -> bool { | 14 | ) -> bool { |
15 | let am = p.start(); | 15 | let am = p.start(); |
16 | let has_attrs = p.at(T![#]); | 16 | let has_attrs = p.at(T![#]); |
17 | attributes::outer_attributes(p); | 17 | attributes::outer_attributes(p); |
18 | let cm = f(p); | 18 | let cm = f(p); |
19 | let success = cm.is_some(); | 19 | let success = cm.is_some(); |
20 | 20 | ||