diff options
| author | bors <bors@rust-lang.org> | 2013-08-01 12:52:29 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-08-01 12:52:29 -0700 |
| commit | 82b24559e6aa0914f8a49e0a9dbfb3cf35372515 (patch) | |
| tree | c2b0ff9b26400eac3f3405d78fe89dc07607c3ae /doc/tutorial.md | |
| parent | 479809a267dbbcc3e2ec87da677c63430d3d229a (diff) | |
| parent | 94f1a5d6f8ecd30c6f59dfeaacdd5962f58bc44c (diff) | |
auto merge of #8190 : thestinger/rust/for, r=thestinger
Diffstat (limited to 'doc/tutorial.md')
| -rw-r--r-- | doc/tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md index a8ace8558b5..c9f1dfcd5a3 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1899,7 +1899,7 @@ struct TimeBomb { impl Drop for TimeBomb { fn drop(&self) { - for self.explosivity.times { + do self.explosivity.times { println("blam!"); } } |
