aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/src/main.rs b/bin/src/main.rs
index 138b243..31f6823 100644
--- a/bin/src/main.rs
+++ b/bin/src/main.rs
@@ -88,8 +88,8 @@ fn _main() -> Result<(), StatixErr> {
88 } 88 }
89 } 89 }
90 SubCommand::Explain(explain_config) => { 90 SubCommand::Explain(explain_config) => {
91 let explaination = explain::explain(explain_config.target)?; 91 let explanation = explain::explain(explain_config.target)?;
92 println!("{}", explaination); 92 println!("{}", explanation)
93 } 93 }
94 } 94 }
95 Ok(()) 95 Ok(())