accidentally left in debug code, bumped minor

This commit is contained in:
Frederik Palmø 2021-10-24 18:31:17 +02:00
parent 7a3a84a649
commit 4f8b44bab1
3 changed files with 2 additions and 4 deletions

2
Cargo.lock generated
View File

@ -4,4 +4,4 @@ version = 3
[[package]]
name = "eyes"
version = "1.1.1"
version = "1.1.2"

View File

@ -1,6 +1,6 @@
[package]
name = "eyes"
version = "1.1.1"
version = "1.1.2"
edition = "2018"
description = "A simpler way to parse using human-readable templates"
license="BSD-3-Clause"

View File

@ -25,8 +25,6 @@ impl<'a> Parser<'a> {
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,
// we don't have to check if we can expand the match
if right.contains(pat) {