Skip to content

Commit d91794d

Browse files
committed
style: remove extra whitespace
Resolves: * winnow-rs#804 (comment)
1 parent 7a4919e commit d91794d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

examples/c_expression/parser.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,6 @@ pub(crate) enum Expr {
173173
/// and it returns a [`Parser`] that takes in a string and returns an [`Expr`] on
174174
/// success.
175175
pub(crate) fn pratt_parser(i: &mut &str) -> ModalResult<Expr> {
176-
177-
178176
fn parser<'i>(precedence: i64) -> impl Parser<&'i str, Expr, ErrMode<ContextError>> {
179177
move |i: &mut &str| {
180178
use Infix::{Left, Neither, Right};

0 commit comments

Comments
 (0)