Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos #1134

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion regex-lite/src/string.rs
Expand Up @@ -1717,7 +1717,7 @@ impl<'h> Captures<'h> {
///
/// This returns a tuple where the first element corresponds to the full
/// substring of the haystack that matched the regex. The second element is
/// an array of substrings, with each corresponding to the to the substring
/// an array of substrings, with each corresponding to the substring
/// that matched for a particular capture group.
///
/// # Panics
Expand Down
2 changes: 1 addition & 1 deletion src/regex/bytes.rs
Expand Up @@ -1689,7 +1689,7 @@ impl<'h> Captures<'h> {
///
/// This returns a tuple where the first element corresponds to the full
/// substring of the haystack that matched the regex. The second element is
/// an array of substrings, with each corresponding to the to the substring
/// an array of substrings, with each corresponding to the substring
/// that matched for a particular capture group.
///
/// # Panics
Expand Down
2 changes: 1 addition & 1 deletion src/regex/string.rs
Expand Up @@ -1694,7 +1694,7 @@ impl<'h> Captures<'h> {
///
/// This returns a tuple where the first element corresponds to the full
/// substring of the haystack that matched the regex. The second element is
/// an array of substrings, with each corresponding to the to the substring
/// an array of substrings, with each corresponding to the substring
/// that matched for a particular capture group.
///
/// # Panics
Expand Down