accidentally left in debug code, bumped minor
This commit is contained in:
parent
7a3a84a649
commit
4f8b44bab1
3 changed files with 2 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -4,4 +4,4 @@ version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "eyes"
|
name = "eyes"
|
||||||
version = "1.1.1"
|
version = "1.1.2"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "eyes"
|
name = "eyes"
|
||||||
version = "1.1.1"
|
version = "1.1.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A simpler way to parse using human-readable templates"
|
description = "A simpler way to parse using human-readable templates"
|
||||||
license="BSD-3-Clause"
|
license="BSD-3-Clause"
|
||||||
|
|
|
@ -25,8 +25,6 @@ impl<'a> Parser<'a> {
|
||||||
right = right.trim_start_matches(|c: char| c.is_whitespace());
|
right = right.trim_start_matches(|c: char| c.is_whitespace());
|
||||||
}
|
}
|
||||||
|
|
||||||
println!("left: '{}', right: '{}'", left, right);
|
|
||||||
|
|
||||||
// if the right side of the split doesn't contain the pattern,
|
// if the right side of the split doesn't contain the pattern,
|
||||||
// we don't have to check if we can expand the match
|
// we don't have to check if we can expand the match
|
||||||
if right.contains(pat) {
|
if right.contains(pat) {
|
||||||
|
|
Loading…
Reference in a new issue