about summary refs log tree commit diff
path: root/src/libregex
diff options
context:
space:
mode:
authorJakub Bukaj <jakub@jakub.cc>2014-11-18 00:24:08 +0100
committerJakub Bukaj <jakub@jakub.cc>2014-11-18 00:24:08 +0100
commitda5c61d469f1ace01728d465c940577ce886b28a (patch)
tree610fa85e34bf54253e342e7ce712ea80257abdc8 /src/libregex
parentde05565ba31fb09b686d00f1b620ec1384136c42 (diff)
parent215f6934009a8e74e58441359482d8654c281009 (diff)
downloadrust-da5c61d469f1ace01728d465c940577ce886b28a.tar.gz
rust-da5c61d469f1ace01728d465c940577ce886b28a.zip
rollup merge of #19038: jayelm/fixed-typos
Baby steps here...

Fixed some comments in liblog, libregex, librustc, libstd.
Diffstat (limited to 'src/libregex')
-rw-r--r--src/libregex/re.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libregex/re.rs b/src/libregex/re.rs
index e1e2abcb1b7..e70491a785c 100644
--- a/src/libregex/re.rs
+++ b/src/libregex/re.rs
@@ -561,7 +561,7 @@ pub struct NoExpand<'t>(pub &'t str);
 /// Replacer describes types that can be used to replace matches in a string.
 pub trait Replacer {
     /// Returns a possibly owned string that is used to replace the match
-    /// corresponding the the `caps` capture group.
+    /// corresponding to the `caps` capture group.
     ///
     /// The `'a` lifetime refers to the lifetime of a borrowed string when
     /// a new owned string isn't needed (e.g., for `NoExpand`).