Update formatting of `InteractionEnvironment::new()`

finchie
Jun 30, 2025, 8:12 AM
NB7K77TZAT5ESYFZATMSGYPKOW3GGVWZLLNDAD4JKZEG7KUAX2HAC

Dependencies

  • [2] NEBSVXIA Apply Clippy fixes
  • [3] BAH2JCJP Add progress bar to `fluent_embed_interaction`
  • [4] JUV7C6ET Create initial prototype of `fluent_embed_interaction`

Change contents

  • edit in fluent_embed_interaction/src/lib.rs at line 5
    [3.9295]
    [3.1735]
    use fluent_embed::Localize;
  • replacement in fluent_embed_interaction/src/lib.rs at line 40
    [3.10088][2.202:258]()
    #[must_use] pub fn new(interactive: bool) -> Self {
    [3.10088]
    [3.10132]
    #[must_use]
    pub fn new(interactive: bool) -> Self {
  • replacement in fluent_embed_interaction/src/lib.rs at line 43
    [3.10147][2.259:373]()
    context: if interactive { InteractionContext::Terminal } else { InteractionContext::NonInteractive },
    [3.10147]
    [3.1885]
    context: match interactive {
    true => InteractionContext::Terminal,
    false => InteractionContext::NonInteractive,
    },