Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/doc/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1281,15 +1281,15 @@ two main looping constructs: `for` and `while`.

The `for` loop is used to loop a particular number of times. Rust's `for` loops
work a bit differently than in other systems languages, however. Rust's `for`
loop doesn't look like this C `for` loop:
loop doesn't look like this "C style" `for` loop:

```{ignore,c}
```{c,notrust}
for (x = 0; x < 10; x++) {
printf( "%d\n", x );
}
```

It looks like this:
Instead, it looks like this:

```{rust}
for x in range(0i, 10i) {
Expand Down