about summary refs log tree commit diff
path: root/src/parse/ast/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/ast/mod.rs')
-rw-r--r--src/parse/ast/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/ast/mod.rs b/src/parse/ast/mod.rs
index 93944b2..7d0b58b 100644
--- a/src/parse/ast/mod.rs
+++ b/src/parse/ast/mod.rs
@@ -3,8 +3,8 @@ use std::fmt::Display;
 use self::statement::Statement;
 
 pub mod expression;
-pub mod statement;
 pub mod nodes;
+pub mod statement;
 
 #[derive(Debug)]
 pub struct Program {