aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/hard_break_trailing.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-25 16:27:45 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-25 16:27:45 +0200
commit79fe341efc4d5e7467ec08cb7d0688b17a9efb05 (patch)
tree041c6fdf5821d27b8510005f847a3bf4488a3bf6 /src/construct/hard_break_trailing.rs
parentca56f2742d8719358d2046fbdee4f1087add0568 (diff)
downloadmarkdown-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/hard_break_trailing.rs')
-rw-r--r--src/construct/hard_break_trailing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/hard_break_trailing.rs b/src/construct/hard_break_trailing.rs
index 35097ec..1d1f10f 100644
--- a/src/construct/hard_break_trailing.rs
+++ b/src/construct/hard_break_trailing.rs
@@ -81,7 +81,7 @@ fn inside(tokenizer: &mut Tokenizer, code: Code, size: usize) -> State {
{
tokenizer.exit(Token::HardBreakTrailingSpace);
tokenizer.exit(Token::HardBreakTrailing);
- State::Ok(0)
+ State::Ok
}
_ => State::Nok,
}