diff options
| author | Jakub Bukaj <jakub@jakub.cc> | 2014-11-18 00:24:08 +0100 |
|---|---|---|
| committer | Jakub Bukaj <jakub@jakub.cc> | 2014-11-18 00:24:08 +0100 |
| commit | da5c61d469f1ace01728d465c940577ce886b28a (patch) | |
| tree | 610fa85e34bf54253e342e7ce712ea80257abdc8 /src/libregex | |
| parent | de05565ba31fb09b686d00f1b620ec1384136c42 (diff) | |
| parent | 215f6934009a8e74e58441359482d8654c281009 (diff) | |
| download | rust-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.rs | 2 |
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`). |
