diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-12-15 16:26:09 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-12-15 16:26:09 +1100 |
| commit | 55534100ce175143e2c7223100b825bf130e750b (patch) | |
| tree | c14401522be20bd5f2b9b3dbfe741d5dc09ad9f9 /src/libstd/fmt | |
| parent | 8f6df87c1d876895a7e313728b43d9710ae682bb (diff) | |
| download | rust-55534100ce175143e2c7223100b825bf130e750b.tar.gz rust-55534100ce175143e2c7223100b825bf130e750b.zip | |
std: fix spelling in docs.
Diffstat (limited to 'src/libstd/fmt')
| -rw-r--r-- | src/libstd/fmt/mod.rs | 6 |
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 /// |
