From 9a3caf201d6f3b06f984508c1ad9b6f54cd0e48e Mon Sep 17 00:00:00 2001 From: Dominic Grimm Date: Sat, 10 Sep 2022 15:00:09 +0200 Subject: [PATCH] Update module re-exporting --- henceforth/src/lib/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/henceforth/src/lib/compiler.rs b/henceforth/src/lib/compiler.rs index 2bb6273..3ed16d1 100644 --- a/henceforth/src/lib/compiler.rs +++ b/henceforth/src/lib/compiler.rs @@ -5,7 +5,7 @@ use std::collections::HashMap; use crate::parser; -pub mod instruction; +mod instruction; pub use crate::compiler::instruction::Instruction; pub trait Compilable {