]> git.lizzy.rs Git - rust.git/commitdiff
Typo in module tutorial
authorBen Striegel <ben.striegel@gmail.com>
Wed, 22 Jan 2014 21:03:00 +0000 (16:03 -0500)
committerBen Striegel <ben.striegel@gmail.com>
Wed, 22 Jan 2014 21:03:00 +0000 (16:03 -0500)
doc/tutorial.md

index 057944484bae9872d8395fd71810fa542b8aaa12..cc8dd6edd3f99ce78210fe20193d3d1069fd8dbb 100644 (file)
@@ -3071,7 +3071,8 @@ The effect it has on your module hierarchy mirrors aspects of both `mod` and `us
   The linkage information the binary needs to use the library `foo`.
 
 - But like `use`, all `extern mod` statements that refer to the same library are interchangeable,
-  as each one really just presents an alias to an external module (the crate root of the library your linking against).
+  as each one really just presents an alias to an external module (the crate root of the library
+  you're linking against).
 
 Remember how `use`-statements have to go before local declarations because the latter shadows the former?
 Well, `extern mod` statements also have their own rules in that regard: