Skip to content

Commit 90057c2

Browse files
committed
output code language to text
1 parent 151c3d3 commit 90057c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/trpl/for-loops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ for (i,j) in (5..10).enumerate() {
5656

5757
Outputs:
5858

59-
```rust
59+
```text
6060
i = 0 and j = 5
6161
i = 1 and j = 6
6262
i = 2 and j = 7
@@ -76,7 +76,7 @@ for (linenumber, line) in lines.enumerate() {
7676

7777
Outputs:
7878

79-
```rust
79+
```text
8080
0: Content of line one
8181
1: Content of line two
8282
2: Content of line tree

0 commit comments

Comments
 (0)