Rollup merge of #35879 - CryZe:patch-2, r=apasel422

Fix "Furthermore" Typo in String Docs

It used to say "Furtheremore" instead of "Furthermore".
This commit is contained in:
Jonathan Turner 2016-08-22 15:34:22 -07:00 committed by GitHub
commit b560f5a7bc

View File

@ -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.