aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2020-06-09 15:26:43 -0400
committerGravatar Thomas Van Lenten <thomasvl@google.com>2020-06-09 15:27:34 -0400
commit1902ad87111e7e1e8ad7b21f515697c91e4427f2 (patch)
treeca08046ce8a48145e2ee812f903823d1d6da8088
parent08a4c0c3c0ca3ef8d0461ba2b82c78acd7d56aaa (diff)
fix typo
-rw-r--r--Foundation/GTMRegex.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Foundation/GTMRegex.m b/Foundation/GTMRegex.m
index 878d352..38077be 100644
--- a/Foundation/GTMRegex.m
+++ b/Foundation/GTMRegex.m
@@ -355,7 +355,7 @@ static NSString *const kReplacementPattern =
// literal backslashes followed by our backreference. Think of it as a "an
// odd number of slashes that comes after a non-backslash character." There
// is no way to rexpress this in re_format(7) extended expressions. Instead
- // we look for a non-blackslash or string start followed by an optional even
+ // we look for a non-backslash or string start followed by an optional even
// number of slashes followed by the backreference; and use the special
// flag; so after each match, we restart claiming it's the start of the
// string. (the problem match w/o this flag is a substition of "\2\1")