From 18445cd6cc7b05014157a8889214ccc236fe1715 Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Sun, 21 Aug 2016 22:51:37 +0200 Subject: [PATCH] Fix "Furthermore" Typo in String Docs It used to say "Furtheremore" instead of "Furthermore". --- src/libcollections/string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs index 788c838cd3fc8..a7dc2875320b7 100644 --- a/src/libcollections/string.rs +++ b/src/libcollections/string.rs @@ -132,7 +132,7 @@ use boxed::Box; /// [`OsString`]: ../../std/ffi/struct.OsString.html /// /// Indexing is intended to be a constant-time operation, but UTF-8 encoding -/// does not allow us to do this. Furtheremore, it's not clear what sort of +/// does not allow us to do this. Furthermore, it's not clear what sort of /// thing the index should return: a byte, a codepoint, or a grapheme cluster. /// The [`as_bytes()`] and [`chars()`] methods return iterators over the first /// two, respectively.