We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3432b2 commit df6240dCopy full SHA for df6240d
src/doc/guide.md
@@ -1281,15 +1281,15 @@ two main looping constructs: `for` and `while`.
1281
1282
The `for` loop is used to loop a particular number of times. Rust's `for` loops
1283
work a bit differently than in other systems languages, however. Rust's `for`
1284
-loop doesn't look like this C `for` loop:
+loop doesn't look like this "C style" `for` loop:
1285
1286
-```{ignore,c}
+```{c}
1287
for (x = 0; x < 10; x++) {
1288
printf( "%d\n", x );
1289
}
1290
```
1291
1292
-It looks like this:
+Instead, it looks like this:
1293
1294
```{rust}
1295
for x in range(0i, 10i) {
0 commit comments