diff --git a/src/parser/module.rs b/src/parser/module.rs index f04a1fd..fb3aedb 100644 --- a/src/parser/module.rs +++ b/src/parser/module.rs @@ -10,7 +10,7 @@ use crate::parser::{ declaration, proc::ProcBlock, tokens::{token, TokenKind as tk, TokenSpan}, - IResult, NetDecl, Span, + IResult, NetDecl, }; #[derive(Debug)] diff --git a/src/parser/tokens.rs b/src/parser/tokens.rs index dacf634..b496ec7 100644 --- a/src/parser/tokens.rs +++ b/src/parser/tokens.rs @@ -3,7 +3,7 @@ use super::{ error::{Error, InputPos}, literals::{identifier, ws0}, - IErr, IResult, Span, + IResult, Span, }; use nom::{ branch::alt,