about summary refs log tree commit diff
path: root/src/libstd/fmt
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-12-15 16:26:09 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2013-12-15 16:26:09 +1100
commit55534100ce175143e2c7223100b825bf130e750b (patch)
treec14401522be20bd5f2b9b3dbfe741d5dc09ad9f9 /src/libstd/fmt
parent8f6df87c1d876895a7e313728b43d9710ae682bb (diff)
downloadrust-55534100ce175143e2c7223100b825bf130e750b.tar.gz
rust-55534100ce175143e2c7223100b825bf130e750b.zip
std: fix spelling in docs.
Diffstat (limited to 'src/libstd/fmt')
-rw-r--r--src/libstd/fmt/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/fmt/mod.rs b/src/libstd/fmt/mod.rs
index a98a110ac3b..b4f30311753 100644
--- a/src/libstd/fmt/mod.rs
+++ b/src/libstd/fmt/mod.rs
@@ -606,9 +606,9 @@ pub fn writeln(output: &mut io::Writer, args: &Arguments) {
 /// See the documentation for `format` for why this function is unsafe and care
 /// should be taken if calling it manually.
 ///
-/// Thankfully the rust compiler provides the macro `fmtf!` which will perform
-/// all of this validation at compile-time and provides a safe interface for
-/// invoking this function.
+/// Thankfully the rust compiler provides macros like `write!` and
+/// `format_args!` which perform all of this validation at compile-time
+/// and provide a safe interface for invoking this function.
 ///
 /// # Arguments
 ///