style(recording): rustfmt audio saver files to satisfy fmt gate - #6
Merged
Conversation
The ubuntu CI job runs rustfmt --edition 2021 --check on changed Rust files. Two edits from the prior fix (the concat-escape test assert and a warn! call) were not rustfmt-canonical. Reformatted; no logic change.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Formatting-only follow-up to PR #5.
The
ci / rust (ubuntu-22.04)job runsrustfmt --edition 2021 --checkon changed Rust files (the macOS/Windows Rust jobs do not). Two edits from PR #5 were not rustfmt-canonical and failed that gate:frontend/src-tauri/src/audio/incremental_saver.rs:488— theconcat_escape_handles_single_quotestest'sassert_eq!frontend/src-tauri/src/audio/recording_saver.rs:450— awarn!callChange
Ran
rustfmton those two files. No logic change (whitespace/reflow only); the crate compiles and the saver unit tests are unaffected.Verification
rustfmt --edition 2021 --checkon all previously-changed audio files now passes (exit 0).cargo test -p briefli --lib incremental_savercompiles cleanly.