From 15dedb22f6c93f1531627ecadcc80a39177c4b61 Mon Sep 17 00:00:00 2001 From: Timon Rapp Date: Sat, 3 Jan 2015 22:10:53 +0100 Subject: [PATCH] Fix typo in documentation. --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 55465651cfb4..e20f9e0cb558 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -1140,7 +1140,7 @@ fn main() { ``` There's a symbol here we haven't seen before: the double colon (`::`). -This is used to indicate a namesapce. In this case, `Ordering` lives in +This is used to indicate a namespace. In this case, `Ordering` lives in the `cmp` submodule of the `std` module. We'll talk more about modules later in the guide. For now, all you need to know is that you can `use` things from the standard library if you need them.