diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-07-06 19:13:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-06 19:13:07 -0400 |
| commit | 1b7bebf84d7b0c428dddfdada1789ebde7871509 (patch) | |
| tree | 06c7050de8a3b27b63df6694dddd8826632f2566 /src/libstd | |
| parent | 80e5672f7ed4980726e1b917ba5bfdd229b08fc5 (diff) | |
| parent | 3fcb64927750b8c4bccd866ec137500de2e7aea3 (diff) | |
| download | rust-1b7bebf84d7b0c428dddfdada1789ebde7871509.tar.gz rust-1b7bebf84d7b0c428dddfdada1789ebde7871509.zip | |
Rollup merge of #34626 - sylvestre:master, r=Manishearth
Fix typos
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/memchr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/memchr.rs b/src/libstd/memchr.rs index 1d97611eabb..a408b4378e1 100644 --- a/src/libstd/memchr.rs +++ b/src/libstd/memchr.rs @@ -239,7 +239,7 @@ mod fallback { text[..offset].iter().rposition(|elt| *elt == x) } - // test fallback implementations on all plattforms + // test fallback implementations on all platforms #[test] fn matches_one() { assert_eq!(Some(0), memchr(b'a', b"a")); |
