Remove unnecessary self::.
This commit is contained in:
parent
069f240690
commit
3d256d4cd4
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@
|
|||
|
||||
extern crate combine;
|
||||
|
||||
use self::combine::ParseResult;
|
||||
use self::combine::combinator::{Expected, FnParser};
|
||||
use combine::ParseResult;
|
||||
use combine::combinator::{Expected, FnParser};
|
||||
|
||||
// Nothing about this is specific to the type of parser.
|
||||
pub type ResultParser<O, I> = Expected<FnParser<I, fn(I) -> ParseResult<O, I>>>;
|
||||
|
|
Loading…
Reference in a new issue