We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32d962d commit cff81d7Copy full SHA for cff81d7
src/doc/book/documentation.md
@@ -319,23 +319,23 @@ our source code:
319
```text
320
First, we set `x` to five:
321
322
- ```text
+ ```rust
323
let x = 5;
324
# let y = 6;
325
# println!("{}", x + y);
326
```
327
328
Next, we set `y` to six:
329
330
331
# let x = 5;
332
let y = 6;
333
334
335
336
Finally, we print the sum of `x` and `y`:
337
338
339
340
341
println!("{}", x + y);
0 commit comments