]> git.lizzy.rs Git - rust.git/commitdiff
Fix "Furthermore" Typo in String Docs
authorChristopher Serr <cryze92@gmail.com>
Sun, 21 Aug 2016 20:51:37 +0000 (22:51 +0200)
committerGitHub <noreply@github.com>
Sun, 21 Aug 2016 20:51:37 +0000 (22:51 +0200)
It used to say "Furtheremore" instead of "Furthermore".

src/libcollections/string.rs

index 788c838cd3fc8ddaf70ec34a6d862bdac2d2a591..a7dc2875320b718e99a4e19fc5d443744251d28e 100644 (file)
 /// [`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.