about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorHoàng Đức Hiếu <github@hdhoang.space>2018-01-01 14:03:49 +0700
committerGitHub <noreply@github.com>2018-01-01 14:03:49 +0700
commitd7cdd56df49436f59cecd08fef8d8114db7cb76a (patch)
tree959687c9044ee9ca02727311bc06cb595a159eaa /src/libcore
parent037bc651e56ca0bb92c053b31b87db5fa0dda22c (diff)
downloadrust-d7cdd56df49436f59cecd08fef8d8114db7cb76a.tar.gz
rust-d7cdd56df49436f59cecd08fef8d8114db7cb76a.zip
memchr: fix variable name in docstrings
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/slice/memchr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/slice/memchr.rs b/src/libcore/slice/memchr.rs
index 00183be97e7..69c9cb37dcf 100644
--- a/src/libcore/slice/memchr.rs
+++ b/src/libcore/slice/memchr.rs
@@ -56,7 +56,7 @@ fn repeat_byte(b: u8) -> usize {
     rep
 }
 
-/// Return the first index matching the byte `a` in `text`.
+/// Return the first index matching the byte `x` in `text`.
 pub fn memchr(x: u8, text: &[u8]) -> Option<usize> {
     // Scan for a single byte value by reading two `usize` words at a time.
     //
@@ -101,7 +101,7 @@ pub fn memchr(x: u8, text: &[u8]) -> Option<usize> {
     text[offset..].iter().position(|elt| *elt == x).map(|i| offset + i)
 }
 
-/// Return the last index matching the byte `a` in `text`.
+/// Return the last index matching the byte `x` in `text`.
 pub fn memrchr(x: u8, text: &[u8]) -> Option<usize> {
     // Scan for a single byte value by reading two `usize` words at a time.
     //