Skip to content

Commit

Permalink
fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
asukaminato0721 authored Jul 22, 2024
1 parent acedd38 commit 6e1a6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roogle-engine/src/query/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use nom::{
branch::alt,
bytes::complete::{tag, take_while1},
character::complete::char,
character::complete::{alpha1, alphanumeric1, multispace0},
character::complete::{alpha1, alphanumeric1, multispace0, multispace1},
combinator::{eof, fail, map, not, opt, recognize, value},
error::{ContextError, ParseError},
multi::{many0, separated_list0},
Expand Down

0 comments on commit 6e1a6dc

Please sign in to comment.