1
Fork 0

fix doctest (fixup #24466)

This commit is contained in:
Manish Goregaokar 2015-04-19 00:54:42 +05:30
parent 695efb53d6
commit 88601f8d7d

View file

@ -40,7 +40,7 @@ println!("v[0] is: {}", v[0]);
A similar thing happens if we define a function which takes ownership, and
try to use something after weve passed it as an argument:
```rust
```rust,ignore
fn take(v: Vec<i32>) {
// what happens here isnt important.
}