Remove outdated doccomment on EngineState (#12158)

Part of the doccomment was an implementation note on the `im` crate that
hasn't been used for ages.
(If I recall we maybe even received a comment on discord on this)
This commit is contained in:
Stefan Holderbach
2024-03-11 15:57:28 +01:00
committed by GitHub
parent f6853fd636
commit 77379d7b3d
2 changed files with 1 additions and 33 deletions

View File

@ -49,8 +49,7 @@ impl std::fmt::Debug for CliError<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let config = self.1.get_config();
let ansi_support = &config.use_ansi_coloring;
let ansi_support = *ansi_support;
let ansi_support = config.use_ansi_coloring;
let error_style = &config.error_style;