]> git.lizzy.rs Git - rust.git/commitdiff
Fix "more more" typo
authorColin Wallace <wallacoloo@gmail.com>
Sun, 20 Sep 2015 00:19:29 +0000 (17:19 -0700)
committerColin Wallace <wallacoloo@gmail.com>
Sun, 20 Sep 2015 00:19:29 +0000 (17:19 -0700)
src/doc/trpl/choosing-your-guarantees.md

index b86ad47feb2e95fa1c4594b5be69793642fb7835..f53ece1f2a7f5f16fd25f4d47ca021ebd1c88538 100644 (file)
@@ -321,7 +321,7 @@ there's a lot of concurrent access happening.
 
 # Composition
 
-A common gripe when reading Rust code is with types like `Rc<RefCell<Vec<T>>>` (or even more more
+A common gripe when reading Rust code is with types like `Rc<RefCell<Vec<T>>>` (or even more
 complicated compositions of such types). It's not always clear what the composition does, or why the
 author chose one like this (and when one should be using such a composition in one's own code)