diff options
author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2019-10-26 16:03:55 +0100 |
---|---|---|
committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2019-10-26 16:03:55 +0100 |
commit | 4ef9b8d17a75d3f68951f506ad390e1367c1b2ad (patch) | |
tree | cb4b57959387ad8c9615653218d752ea54f5f85a /crates/ra_assists/src/doc_tests | |
parent | 3126152a84e08a80659d49d735d03628154564ed (diff) |
use correct spacing for enum pattern
Diffstat (limited to 'crates/ra_assists/src/doc_tests')
-rw-r--r-- | crates/ra_assists/src/doc_tests/generated.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/doc_tests/generated.rs b/crates/ra_assists/src/doc_tests/generated.rs index 2f36c3baa..43fa159d7 100644 --- a/crates/ra_assists/src/doc_tests/generated.rs +++ b/crates/ra_assists/src/doc_tests/generated.rs | |||
@@ -196,7 +196,7 @@ enum Action { Move { distance: u32 }, Stop } | |||
196 | 196 | ||
197 | fn handle(action: Action) { | 197 | fn handle(action: Action) { |
198 | match action { | 198 | match action { |
199 | Action::Move{ distance } => (), | 199 | Action::Move { distance } => (), |
200 | Action::Stop => (), | 200 | Action::Stop => (), |
201 | } | 201 | } |
202 | } | 202 | } |