diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-25 16:27:45 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-25 16:27:45 +0200 |
commit | 79fe341efc4d5e7467ec08cb7d0688b17a9efb05 (patch) | |
tree | 041c6fdf5821d27b8510005f847a3bf4488a3bf6 /src/construct/partial_space_or_tab.rs | |
parent | ca56f2742d8719358d2046fbdee4f1087add0568 (diff) | |
download | markdown-rs-79fe341efc4d5e7467ec08cb7d0688b17a9efb05.tar.gz markdown-rs-79fe341efc4d5e7467ec08cb7d0688b17a9efb05.tar.bz2 markdown-rs-79fe341efc4d5e7467ec08cb7d0688b17a9efb05.zip |
Remove no longer needed field in `State::Ok`
Diffstat (limited to 'src/construct/partial_space_or_tab.rs')
-rw-r--r-- | src/construct/partial_space_or_tab.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/construct/partial_space_or_tab.rs b/src/construct/partial_space_or_tab.rs index f13414a..30c63e0 100644 --- a/src/construct/partial_space_or_tab.rs +++ b/src/construct/partial_space_or_tab.rs @@ -149,7 +149,7 @@ fn start(tokenizer: &mut Tokenizer, code: Code, mut info: Info) -> State { } _ => { if info.options.min == 0 { - State::Ok(0) + State::Ok } else { State::Nok } @@ -173,7 +173,7 @@ fn inside(tokenizer: &mut Tokenizer, code: Code, mut info: Info) -> State { _ => { tokenizer.exit(info.options.kind.clone()); if info.size >= info.options.min { - State::Ok(0) + State::Ok } else { State::Nok } @@ -204,7 +204,7 @@ fn after_space_or_tab(tokenizer: &mut Tokenizer, code: Code, mut info: EolInfo) tokenizer.exit(Token::LineEnding); State::Fn(Box::new(|t, c| after_eol(t, c, info))) } - _ if info.ok => State::Ok(0), + _ if info.ok => State::Ok, _ => State::Nok, } } @@ -245,6 +245,6 @@ fn after_more_space_or_tab(_tokenizer: &mut Tokenizer, code: Code) -> State { ) { State::Nok } else { - State::Ok(0) + State::Ok } } |