diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-13 20:38:19 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-13 20:38:19 +0200 |
commit | 1c51fedaeedecd536903982d7dbc663ab9fc2623 (patch) | |
tree | ba22bd4bcb3865dc65e05f6cf90e41e3e82fe3cc /src/parser.rs | |
parent | ec1cee9d7e01722b1d87552bb5f7b0cab7602af6 (diff) | |
download | markdown-rs-1c51fedaeedecd536903982d7dbc663ab9fc2623.tar.gz markdown-rs-1c51fedaeedecd536903982d7dbc663ab9fc2623.tar.bz2 markdown-rs-1c51fedaeedecd536903982d7dbc663ab9fc2623.zip |
Refactor some code to improve coverage
Diffstat (limited to 'src/parser.rs')
-rw-r--r-- | src/parser.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/parser.rs b/src/parser.rs index 4e8d859..e40aa5a 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -70,11 +70,9 @@ pub fn parse<'a>( defs.append(&mut result.definitions); if result.done { - break; + return Ok((events, parse_state)); } result = subtokenize(&mut events, &parse_state, &None)?; } - - Ok((events, parse_state)) } |