From a35f1b29d743a7d5cc50469818f7b994ed186903 Mon Sep 17 00:00:00 2001 From: Colin Wallace Date: Sat, 19 Sep 2015 17:19:29 -0700 Subject: [PATCH] Fix "more more" typo --- src/doc/trpl/choosing-your-guarantees.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/choosing-your-guarantees.md b/src/doc/trpl/choosing-your-guarantees.md index b86ad47feb2e9..f53ece1f2a7f5 100644 --- a/src/doc/trpl/choosing-your-guarantees.md +++ b/src/doc/trpl/choosing-your-guarantees.md @@ -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>>` (or even more more +A common gripe when reading Rust code is with types like `Rc>>` (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)