]> git.lizzy.rs Git - rust.git/commitdiff
mdinger fix
authorAlexis Beingessner <a.beingessner@gmail.com>
Tue, 7 Jul 2015 03:28:11 +0000 (20:28 -0700)
committerAlexis Beingessner <a.beingessner@gmail.com>
Tue, 7 Jul 2015 03:28:11 +0000 (20:28 -0700)
safe-unsafe-meaning.md

index 8a6300a061d2481659962857744367bd1b2fb046..6c3d4087b8198f3d35a20a3313fd60a1b3d0b4d3 100644 (file)
@@ -98,7 +98,7 @@ destructors will be successfully called! Hooray!
 
 However BTreeMap is implemented using a modest spoonful of Unsafe (most collections
 are). That means that it is not necessarily *trivially true* that a bad Ord
-implementation will make BTreeMap behave safely. Unsafe most be sure not to rely
+implementation will make BTreeMap behave safely. Unsafe must be sure not to rely
 on Ord *where safety is at stake*, because Ord is provided by Safe, and memory
 safety is not Safe's responsibility to uphold. *It must be impossible for Safe
 code to violate memory safety*.