Rename mod name

This commit is contained in:
dalance 2019-06-28 12:30:15 +09:00
parent a3c2e79e7b
commit a207cabb16
5 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
pub mod comment;
pub mod identifier;
pub mod number;
pub mod comments;
pub mod identifiers;
pub mod numbers;
pub mod util;

View File

@ -1,4 +1,4 @@
use crate::identifier::*;
use crate::identifiers::*;
use nom::character::complete::*;
use nom::IResult;