diff options
author | Akshay <[email protected]> | 2021-10-31 16:01:04 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2021-10-31 16:01:04 +0000 |
commit | 15ccd864c8869f87a564e5ab7e923dcc2bb54340 (patch) | |
tree | 9d47b230d5d4ad1b0f40ba88f097418b981805a4 /bin | |
parent | 4567a246a0b63418f17ead4adc81f5ebab8bdd81 (diff) |
add explainations to each lint
Diffstat (limited to 'bin')
-rw-r--r-- | bin/src/main.rs | 4 |
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(()) |