about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher Serr <cryze92@gmail.com>2016-08-21 22:51:37 +0200
committerGitHub <noreply@github.com>2016-08-21 22:51:37 +0200
commit18445cd6cc7b05014157a8889214ccc236fe1715 (patch)
tree8bc5a02636fa7a4f88a04cdf05d933cd81bb1392
parent490189634b656dcca9e41e6b52093569c03bd4df (diff)
downloadrust-18445cd6cc7b05014157a8889214ccc236fe1715.tar.gz
rust-18445cd6cc7b05014157a8889214ccc236fe1715.zip
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.