Update formatting of `InteractionEnvironment::new()`
Dependencies
- [2]
NEBSVXIAApply Clippy fixes - [3]
BAH2JCJPAdd progress bar to `fluent_embed_interaction` - [4]
JUV7C6ETCreate initial prototype of `fluent_embed_interaction`
Change contents
- edit in fluent_embed_interaction/src/lib.rs at line 5
use fluent_embed::Localize; - replacement in fluent_embed_interaction/src/lib.rs at line 40
#[must_use] pub fn new(interactive: bool) -> Self {#[must_use]pub fn new(interactive: bool) -> Self { - replacement in fluent_embed_interaction/src/lib.rs at line 43
context: if interactive { InteractionContext::Terminal } else { InteractionContext::NonInteractive },context: match interactive {true => InteractionContext::Terminal,false => InteractionContext::NonInteractive,},