about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Turner <jonathandturner@users.noreply.github.com>2016-08-22 15:34:22 -0700
committerGitHub <noreply@github.com>2016-08-22 15:34:22 -0700
commitb560f5a7bc66d813138d4a4272318809709c9b8f (patch)
tree6e376548d8fefdd301107f1f32a98c48b3ee1fca
parent19f30d3f8636b2a6d3377d2c0867734a5041d109 (diff)
parent18445cd6cc7b05014157a8889214ccc236fe1715 (diff)
downloadrust-b560f5a7bc66d813138d4a4272318809709c9b8f.tar.gz
rust-b560f5a7bc66d813138d4a4272318809709c9b8f.zip
Rollup merge of #35879 - CryZe:patch-2, r=apasel422
Fix "Furthermore" Typo in String Docs

It used to say "Furtheremore" instead of "Furthermore".
-rw-r--r--src/libcollections/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs
index 788c838cd3f..a7dc2875320 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.