adding docs, updating Cargo.toml

This commit is contained in:
David Bittner
2019-04-26 22:12:39 -04:00
parent 7bab969b69
commit 29eb11a1e1
5 changed files with 31 additions and 7 deletions

View File

@@ -35,8 +35,8 @@ fn test_reset_mode() {
fn test_parser_iterator() {
let parse_str = "Hello, world? How are \x27[=7lyou? I hope you're doing well.";
let strings: Vec<Output> = iterate_on(parse_str)
let strings: Vec<Output> = ParserIterator::new(parse_str)
.collect();
println!("{:#?}", strings);
assert_eq!(strings.len(), 3);
}