Skip to content

Commit

Permalink
oboe removed
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewyli committed Jan 7, 2015
1 parent b2085d9 commit da83e4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc/intro.md
Expand Up @@ -543,7 +543,7 @@ use std::thread::Thread;
fn main() {
let vec = vec![1i, 2, 3];
for i in range(1u, 3) {
for i in range(0u, 3) {
Thread::spawn(move || {
println!("{}", vec[i]);
}).detach();
Expand All @@ -559,7 +559,7 @@ a vector:
```{rust}
let vec = vec![1i, 2, 3];
for i in range(1u, vec.len()) {
for i in range(0u, vec.len()) {
println!("{}", vec[i]);
}
```
Expand Down

0 comments on commit da83e4d

Please sign in to comment.