about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-12-08 09:02:33 +0000
committerbors <bors@rust-lang.org>2014-12-08 09:02:33 +0000
commitcf0b4e068227dd33fa15f3ffe24f29e0535d197f (patch)
tree4ed56f33eaaf211e3c0b4a21300898f47aa513c5 /src/libstd
parent1e69dfa261ecdf8010ba93a07f2bfed538f9acd5 (diff)
parent15ca63081b384bfcf43d5a065298bb6fbf2cbfe0 (diff)
downloadrust-cf0b4e068227dd33fa15f3ffe24f29e0535d197f.tar.gz
rust-cf0b4e068227dd33fa15f3ffe24f29e0535d197f.zip
auto merge of #19506 : eddyb/rust/fmt-polish, r=alexcrichton
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/fmt.rs b/src/libstd/fmt.rs
index 6a2047d1cef..d0c9df9d914 100644
--- a/src/libstd/fmt.rs
+++ b/src/libstd/fmt.rs
@@ -418,7 +418,7 @@ pub use core::fmt::Error;
 pub use core::fmt::{Argument, Arguments, write, radix, Radix, RadixFmt};
 
 #[doc(hidden)]
-pub use core::fmt::{argument, argumentstr, argumentuint};
+pub use core::fmt::{argument, argumentuint};
 
 /// The format function takes a precompiled format string and a list of
 /// arguments, to return the resulting formatted string.