Fix "Furthermore" Typo in String Docs

It used to say "Furtheremore" instead of "Furthermore".
This commit is contained in:
Christopher Serr 2016-08-21 22:51:37 +02:00 committed by GitHub
parent 490189634b
commit 18445cd6cc

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.