summaryrefslogtreecommitdiff
path: root/cryptlib.cpp
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@users.noreply.github.com>2021-03-04 19:17:42 +0100
committerGitHub <noreply@github.com>2021-03-04 13:17:42 -0500
commit0a40a0c3cab53a6cc2d45a084d9c24d39fa97c96 (patch)
tree2204beffa43998a4a50fe6f80417a9585cd7d1d4 /cryptlib.cpp
parent1f1a7994c85f962954283eb27f1e6d9eb10d7ecb (diff)
downloadcryptopp-git-0a40a0c3cab53a6cc2d45a084d9c24d39fa97c96.tar.gz
Fix typos in documentation and comments (PR #1012)
Diffstat (limited to 'cryptlib.cpp')
-rw-r--r--cryptlib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptlib.cpp b/cryptlib.cpp
index a7523497..0199677c 100644
--- a/cryptlib.cpp
+++ b/cryptlib.cpp
@@ -1018,7 +1018,7 @@ int LibraryVersion(CRYPTOPP_NOINLINE_DOTDOTDOT)
class NullNameValuePairs : public NameValuePairs
{
public:
- NullNameValuePairs() {} // Clang complains a default ctor must be avilable
+ NullNameValuePairs() {} // Clang complains a default ctor must be available
bool GetVoidValue(const char *name, const std::type_info &valueType, void *pValue) const
{CRYPTOPP_UNUSED(name); CRYPTOPP_UNUSED(valueType); CRYPTOPP_UNUSED(pValue); return false;}
};