Remove unnecessary self::.

This commit is contained in:
Richard Newman 2017-02-02 09:39:32 -08:00
parent 069f240690
commit 3d256d4cd4

View file

@ -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>>>;