diff options
author | Xiaoyin Liu <xiaoyinl@users.noreply.github.com> | 2017-08-04 07:10:41 +0200 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2017-08-05 20:42:06 +0200 |
commit | c9a41d7dd631a69b73bea8af714a3a8b872b8309 (patch) | |
tree | 3420c85d6f8a2aa2e893f783ea768ca876acaa0b /crypto/armcap.c | |
parent | Fix typo in HKDF example documentation (diff) | |
download | openssl-c9a41d7dd631a69b73bea8af714a3a8b872b8309.tar.xz openssl-c9a41d7dd631a69b73bea8af714a3a8b872b8309.zip |
Fix typo in files in crypto folder
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Andy Polyakov <appro@openssl.org>
GH: #4093
Diffstat (limited to 'crypto/armcap.c')
-rw-r--r-- | crypto/armcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/armcap.c b/crypto/armcap.c index baa2d3d257..b55a71ee78 100644 --- a/crypto/armcap.c +++ b/crypto/armcap.c @@ -1,5 +1,5 @@ /* - * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2011-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -69,7 +69,7 @@ static unsigned long (*getauxval) (unsigned long) = NULL; # endif /* - * ARM puts the the feature bits for Crypto Extensions in AT_HWCAP2, whereas + * ARM puts the feature bits for Crypto Extensions in AT_HWCAP2, whereas * AArch64 used AT_HWCAP. */ # if defined(__arm__) || defined (__arm) |