diff --git a/src/base32.cpp b/src/base32.cpp index 1964995..833b9b3 100644 --- a/src/base32.cpp +++ b/src/base32.cpp @@ -85,7 +85,7 @@ namespace base32 /* * sanity check that: * - decoding base32 succeeded - * - the library agrees on how big the output buffer should be, i.e. that the preceeding allocation logic was correct + * - the library agrees on how big the output buffer should be, i.e. that the preceding allocation logic was correct */ ok = status == OATH_OK && reportedCapacity == ((size_t) capacity); diff --git a/src/validators/countervalidator.cpp b/src/validators/countervalidator.cpp index f8f2d2b..1a497c6 100644 --- a/src/validators/countervalidator.cpp +++ b/src/validators/countervalidator.cpp @@ -31,7 +31,7 @@ namespace validators return std::optional(v); } else { /* - * Fall back to parsing according to C locale for beter UX. + * Fall back to parsing according to C locale for better UX. * This simplifies copy-pasting from websites which may be a bit * biased towards the Anglosphere. */ diff --git a/src/validators/util.cpp b/src/validators/util.cpp index 644727a..629e28e 100644 --- a/src/validators/util.cpp +++ b/src/validators/util.cpp @@ -20,7 +20,7 @@ #include -QRegularExpression spaces_patern(void) +QRegularExpression spaces_pattern(void) { static const QRegularExpression re("\\s*"); re.optimize(); @@ -32,7 +32,7 @@ namespace validators QString strip_spaces(QString &input) { - static const QRegularExpression re = spaces_patern(); + static const QRegularExpression re = spaces_pattern(); return input.replace(re, QLatin1String("")); } }