From 3d256d4cd45a7a04b4452f4c95faad2e315e8f35 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Thu, 2 Feb 2017 09:39:32 -0800 Subject: [PATCH] Remove unnecessary self::. --- parser-utils/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser-utils/src/lib.rs b/parser-utils/src/lib.rs index a40e45a0..f992afda 100644 --- a/parser-utils/src/lib.rs +++ b/parser-utils/src/lib.rs @@ -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 = Expected ParseResult>>;