Fix code snippeting Part 6: Grouping

This commit is contained in:
Shadowfacts 2021-04-18 22:49:17 -04:00
parent 7b4fb77153
commit dad7ed06dc
Signed by untrusted user: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 2 additions and 2 deletions

View File

@ -84,8 +84,8 @@ And now it can parse grouped expressions:
```rust
fn main() {
let tokens = tokenize("(1)");
if let node = parse(tokens) {
println!("node: {:#?}", node);
if let node = parse(&tokens) {
println!("node: {:#?}", &node);
}
}
```