diff options
| author | bors <bors@rust-lang.org> | 2013-07-24 08:52:36 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-24 08:52:36 -0700 |
| commit | f132401a0b4f7fe19f9de50ab5a5a6a0d1d68607 (patch) | |
| tree | 732c07d43b90c2183e98a79cbd34e0bafaea2585 /src/libsyntax/parse | |
| parent | 51028532d790db476b102ebdda40bb9b1a7f8106 (diff) | |
| parent | 8f86fa3b31ec80020c30b70d1d04987481f89e4c (diff) | |
| download | rust-f132401a0b4f7fe19f9de50ab5a5a6a0d1d68607.tar.gz rust-f132401a0b4f7fe19f9de50ab5a5a6a0d1d68607.zip | |
auto merge of #7982 : thestinger/rust/iterator, r=thestinger
f0f4dcc r=huonw 25e9c4c r=graydon a87c2d1 r=brson 16f369d r=cmr 9f05cc8 r=bstrie e858055 r=huonw 5d80938 r=thestinger 05d03e7 r=cmr 8f86fa3 r=thestinger
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 2d15d0ab7e8..52b6d4459bf 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -686,7 +686,7 @@ mod test { use std::io; #[test] fn t1() { let a = fresh_name("ghi"); - io::println(fmt!("interned name: %u,\ntextual name: %s\n", - a,interner_get(a))); + printfln!("interned name: %u,\ntextual name: %s\n", + a, interner_get(a)); } } |
