Clean up compiler errors related to type name changes

This commit is contained in:
Eryn Wells 2017-04-03 16:12:12 -04:00
parent ddfac28b8c
commit b0aa38e387
3 changed files with 16 additions and 16 deletions

View file

@ -2,15 +2,15 @@
* Eryn Wells <eryn@erynwells.me>
*/
pub use self::bool::Bool;
pub use self::char::Char;
pub use self::number::Number;
use self::value::Value;
pub mod bool;
pub mod char;
pub mod number;
mod value;
pub mod value;
pub use self::bool::Bool;
pub use self::char::Char;
pub use self::number::Number;
pub use self::value::Value;
#[cfg(test)]
mod tests {