aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/lib.rs')
-rw-r--r--crates/ra_syntax/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/lib.rs b/crates/ra_syntax/src/lib.rs
index 2bced1867..edb6076bb 100644
--- a/crates/ra_syntax/src/lib.rs
+++ b/crates/ra_syntax/src/lib.rs
@@ -203,7 +203,8 @@ fn api_walkthrough() {
203 assert_eq!(name.text(), "foo"); 203 assert_eq!(name.text(), "foo");
204 204
205 // Let's get the `1 + 1` expression! 205 // Let's get the `1 + 1` expression!
206 let block: ast::Block = func.body().unwrap(); 206 let body: ast::BlockExpr = func.body().unwrap();
207 let block = body.block().unwrap();
207 let expr: ast::Expr = block.expr().unwrap(); 208 let expr: ast::Expr = block.expr().unwrap();
208 209
209 // Enums are used to group related ast nodes together, and can be used for 210 // Enums are used to group related ast nodes together, and can be used for