Skip to content

Commit c53eddb

Browse files
rusty1968FerralCoder
authored andcommitted
style: fix comment formatting in RustCrypto cipher tests
Apply cargo fmt formatting to correct comment spacing from double space to single space after // in the clippy allow attribute: - `#[allow(clippy::unwrap_used)] // Allow unwrap...` + `#[allow(clippy::unwrap_used)] // Allow unwrap...` This ensures consistent formatting according to Rust style guidelines and passes `cargo fmt --check` validation.
1 parent 302f032 commit c53eddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/impls/rustcrypto/src/cipher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ impl CipherStatus for AesCtrContext {
367367
}
368368

369369
#[cfg(test)]
370-
#[allow(clippy::unwrap_used)] // Allow unwrap in tests for cleaner test code
370+
#[allow(clippy::unwrap_used)] // Allow unwrap in tests for cleaner test code
371371
mod tests {
372372
use super::*;
373373
use openprot_hal_blocking::cipher::BlockAligned;

0 commit comments

Comments
 (0)