Skip to content

Commit

Permalink
Renamed module
Browse files Browse the repository at this point in the history
The public functions are all part of the AsciiArt struct, so it makes more sense to name it `ascii_art` rather than `parse`
  • Loading branch information
andymac-2 committed Oct 20, 2019
1 parent abb81a2 commit ff7814a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ use std::{
};
use strum::{IntoEnumIterator, EnumCount};

mod parse;
use parse::AsciiArt;
mod ascii_art;
use ascii_art::AsciiArt;

type Result<T> = result::Result<T, Error>;

Expand Down

0 comments on commit ff7814a

Please sign in to comment.