Skip to content

Commit 014bdea

Browse files
committed
Auto merge of #328 - seeekr:patch-1, r=BurntSushi
fix typos in backtrack.rs
2 parents c7bf105 + 0263a18 commit 014bdea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backtrack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// regexes on small inputs because of its memory requirements.
1414
//
1515
// In particular, this is a *bounded* backtracking engine. It retains worst
16-
// case linear time by keeping track of the states that is has visited (using a
16+
// case linear time by keeping track of the states that it has visited (using a
1717
// bitmap). Namely, once a state is visited, it is never visited again. Since a
1818
// state is keyed by `(instruction index, input index)`, we have that its time
1919
// complexity is `O(mn)` (i.e., linear in the size of the search text).

0 commit comments

Comments
 (0)