From ccbd622ed78034c24ac19c7cb1cf238f3f74c1ff Mon Sep 17 00:00:00 2001 From: HowJMay Date: Wed, 29 Jul 2020 16:59:19 +0800 Subject: [PATCH] Fix typo in comment Fix typo in program/pkey/ecdh_curve25519.c Signed-off-by: HowJMay --- ChangeLog.d/fix-typo.txt | 3 +++ programs/pkey/ecdh_curve25519.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 ChangeLog.d/fix-typo.txt diff --git a/ChangeLog.d/fix-typo.txt b/ChangeLog.d/fix-typo.txt new file mode 100644 index 0000000000..08a93343b1 --- /dev/null +++ b/ChangeLog.d/fix-typo.txt @@ -0,0 +1,3 @@ +Bugfix + * There is typo in the example code which locates in + program/pkey/ecdh_curve25519.c diff --git a/programs/pkey/ecdh_curve25519.c b/programs/pkey/ecdh_curve25519.c index e79dce09a9..5febc68a8d 100644 --- a/programs/pkey/ecdh_curve25519.c +++ b/programs/pkey/ecdh_curve25519.c @@ -88,7 +88,7 @@ int main( int argc, char *argv[] ) mbedtls_printf( " ok\n" ); /* - * Client: inialize context and generate keypair + * Client: initialize context and generate keypair */ mbedtls_printf( " . Setting up client context..." ); fflush( stdout );