about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-20 14:21:32 +0000
committerbors <bors@rust-lang.org>2014-07-20 14:21:32 +0000
commit8859df7fb5feecd7c397566fcb966c9afabbb7b2 (patch)
treec97df5c032cdac024a703ac05dee61f81e8c739e /src
parente6b28f9ac3f6a1a6441e0d47c56c660d7a10abf9 (diff)
parent69127f2f4e467aa206727f431819c5ce98810887 (diff)
downloadrust-8859df7fb5feecd7c397566fcb966c9afabbb7b2.tar.gz
rust-8859df7fb5feecd7c397566fcb966c9afabbb7b2.zip
auto merge of #15803 : omp/rust/master, r=alexcrichton
Fix small typo in guide.
Diffstat (limited to 'src')
-rw-r--r--src/doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index b05d0e8ea35..0175817e66a 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -583,7 +583,7 @@ arguments we pass to functions and macros, if you're passing more than one.
 When you just use the double curly braces, Rust will attempt to display the
 value in a meaningful way by checking out its type. If you want to specify the
 format in a more detailed manner, there are a [wide number of options
-available](/std/fmt/index.html). Fow now, we'll just stick to the default:
+available](/std/fmt/index.html). For now, we'll just stick to the default:
 integers aren't very complicated to print.
 
 So, we've cleared up all of the confusion around bindings, with one exception: