Unify the error modules
diff --git a/src/next/parse.rs b/src/next/parse.rs
index ed275ef..7e5f310 100644
--- a/src/next/parse.rs
+++ b/src/next/parse.rs
@@ -7,11 +7,9 @@
 use std::ops::Deref;
 
 use buffer::Cursor;
+use error::{self, Error, Result};
 use proc_macro2::{Ident, Span};
 
-use super::error;
-
-pub use super::error::{Error, Result};
 pub use super::lookahead::{Lookahead1, Peek};
 
 /// Parsing interface implemented by all types that can be parsed in a default