diff mbox series

[trivial] crypto: essiv - fix AEAD capitalization and preposition use in help text

Message ID 20200112165858.21214-1-geert@linux-m68k.org (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show
Series [trivial] crypto: essiv - fix AEAD capitalization and preposition use in help text | expand

Commit Message

Geert Uytterhoeven Jan. 12, 2020, 4:58 p.m. UTC
"AEAD" is capitalized everywhere else.
Use "an" when followed by a written or spoken vowel.

Fixes: be1eb7f78aa8fbe3 ("crypto: essiv - create wrapper template for ESSIV generation")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 crypto/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Herbert Xu Jan. 16, 2020, 7:29 a.m. UTC | #1
On Sun, Jan 12, 2020 at 05:58:58PM +0100, Geert Uytterhoeven wrote:
> "AEAD" is capitalized everywhere else.
> Use "an" when followed by a written or spoken vowel.
> 
> Fixes: be1eb7f78aa8fbe3 ("crypto: essiv - create wrapper template for ESSIV generation")
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
>  crypto/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Patch applied.  Thanks.
diff mbox series

Patch

diff --git a/crypto/Kconfig b/crypto/Kconfig
index 5575d48473bd4a7f..cdb51d4272d0cc7c 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -511,10 +511,10 @@  config CRYPTO_ESSIV
 	  encryption.
 
 	  This driver implements a crypto API template that can be
-	  instantiated either as a skcipher or as a aead (depending on the
+	  instantiated either as an skcipher or as an AEAD (depending on the
 	  type of the first template argument), and which defers encryption
 	  and decryption requests to the encapsulated cipher after applying
-	  ESSIV to the input IV. Note that in the aead case, it is assumed
+	  ESSIV to the input IV. Note that in the AEAD case, it is assumed
 	  that the keys are presented in the same format used by the authenc
 	  template, and that the IV appears at the end of the authenticated
 	  associated data (AAD) region (which is how dm-crypt uses it.)