aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/doc_tests/generated.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_assists/src/doc_tests/generated.rs')
-rw-r--r--crates/ra_assists/src/doc_tests/generated.rs2
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
197fn handle(action: Action) { 197fn 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}