about summary refs log tree commit diff
path: root/src/libcore/str
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-04-15 16:17:18 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2018-04-16 23:37:11 +0200
commit05275dafaaa602fe4a5d275ef724ced39d30465f (patch)
tree22f3b39d398a8a20a005d66ac6875260ab1adec9 /src/libcore/str
parenta3ed2abed7bfb432168eb33492af71ebb16724d9 (diff)
downloadrust-05275dafaaa602fe4a5d275ef724ced39d30465f.tar.gz
rust-05275dafaaa602fe4a5d275ef724ced39d30465f.zip
Remove unwanted auto-linking and update
Diffstat (limited to 'src/libcore/str')
-rw-r--r--src/libcore/str/pattern.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/str/pattern.rs b/src/libcore/str/pattern.rs
index 95bb8f18947..464d57a2702 100644
--- a/src/libcore/str/pattern.rs
+++ b/src/libcore/str/pattern.rs
@@ -258,7 +258,7 @@ pub struct CharSearcher<'a> {
 
     /// `finger` is the current byte index of the forward search.
     /// Imagine that it exists before the byte at its index, i.e.
-    /// haystack[finger] is the first byte of the slice we must inspect during
+    /// `haystack[finger]` is the first byte of the slice we must inspect during
     /// forward searching
     finger: usize,
     /// `finger_back` is the current byte index of the reverse search.