doc: convert remaining uses of core:: to std::.

This commit is contained in:
Huon Wilson 2013-08-16 15:54:14 +10:00
parent abe94f9b4d
commit 72fd02d939
12 changed files with 30 additions and 30 deletions

View file

@ -9,8 +9,8 @@
// except according to those terms.
// xfail-test
use core::io::ReaderUtil;
use core::io::Reader;
use std::io::ReaderUtil;
use std::io::Reader;
fn bar(r:@ReaderUtil) -> ~str { r.read_line() }