Skip to content

Commit 4425650

Browse files
author
Jakob Gerstmayer
committed
Fixed typo in example
1 parent 3c82082 commit 4425650

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hal/src/aes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ impl Aes {
793793
/// let mut aes: Aes = Aes::new(dp.AES, &mut dp.RCC);
794794
///
795795
/// const KEY: [u32; 4] = [0; 4];
796-
/// const IV: [u32, 4] = [0; 4];
796+
/// const IV: [u32; 4] = [0; 4];
797797
///
798798
/// let plaintext: [u32; 4] = [0xf34481ec, 0x3cc627ba, 0xcd5dc3fb, 0x08f273e6];
799799
/// let mut ciphertext: [u32; 4] = [0; 4];

0 commit comments

Comments
 (0)