File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2706,7 +2706,7 @@ impl Config {
2706
2706
/// you're compiling untrusted patterns.
2707
2707
///
2708
2708
/// Note that this limit is applied to _each_ NFA built, and if any of
2709
- /// them excceed the limit, then construction will fail. This limit does
2709
+ /// them exceed the limit, then construction will fail. This limit does
2710
2710
/// _not_ correspond to the total memory used by all NFAs in the meta regex
2711
2711
/// engine.
2712
2712
///
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ enum State {
61
61
Look { look : Look , next : StateID } ,
62
62
/// An empty state that records the start of a capture location. This is an
63
63
/// unconditional epsilon transition like `Empty`, except it can be used to
64
- /// record position information for a captue group when using the NFA for
64
+ /// record position information for a capture group when using the NFA for
65
65
/// search.
66
66
CaptureStart {
67
67
/// The ID of the pattern that this capture was defined.
@@ -77,7 +77,7 @@ enum State {
77
77
} ,
78
78
/// An empty state that records the end of a capture location. This is an
79
79
/// unconditional epsilon transition like `Empty`, except it can be used to
80
- /// record position information for a captue group when using the NFA for
80
+ /// record position information for a capture group when using the NFA for
81
81
/// search.
82
82
CaptureEnd {
83
83
/// The ID of the pattern that this capture was defined.
@@ -128,7 +128,7 @@ enum State {
128
128
}
129
129
130
130
impl State {
131
- /// If this state is an unconditional espilon transition, then this returns
131
+ /// If this state is an unconditional epsilon transition, then this returns
132
132
/// the target of the transition.
133
133
fn goto ( & self ) -> Option < StateID > {
134
134
match * self {
You can’t perform that action at this time.
0 commit comments