From 188fdaacbc7484fe6d90c33fb1b35e420eeda9cf Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 27 Mar 2023 12:07:40 -0400 Subject: [PATCH] Remove dead line of code. --- src/parser/plain_text.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/parser/plain_text.rs b/src/parser/plain_text.rs index 1330cea3..87d592b3 100644 --- a/src/parser/plain_text.rs +++ b/src/parser/plain_text.rs @@ -13,7 +13,6 @@ pub fn plain_text<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s s "Zero input length to plain_text.", )))); } - // not(|i| context.check_exit_matcher(i))(input)?; let mut current_input = input.char_indices(); loop { match current_input.next() {