Commit eb87c282 authored by Max Kellermann's avatar Max Kellermann

util/CharUtil: fix doc typo

parent 47f54b56
...@@ -74,7 +74,7 @@ IsWhitespaceFast(const char ch) noexcept ...@@ -74,7 +74,7 @@ IsWhitespaceFast(const char ch) noexcept
* Is this a non-printable ASCII character? Returns false for * Is this a non-printable ASCII character? Returns false for
* non-ASCII characters. * non-ASCII characters.
* *
* Note that this is not the opposide of IsNonPrintableASCII(). * Note that this is not the opposite of IsNonPrintableASCII().
*/ */
constexpr bool constexpr bool
IsPrintableASCII(char ch) noexcept IsPrintableASCII(char ch) noexcept
...@@ -85,7 +85,7 @@ IsPrintableASCII(char ch) noexcept ...@@ -85,7 +85,7 @@ IsPrintableASCII(char ch) noexcept
/** /**
* Is this a non-printable character? Returns false for non-ASCII characters. * Is this a non-printable character? Returns false for non-ASCII characters.
* *
* Note that this is not the opposide of IsPrintableASCII() * Note that this is not the opposite of IsPrintableASCII()
*/ */
constexpr bool constexpr bool
IsNonPrintableASCII(char ch) noexcept IsNonPrintableASCII(char ch) noexcept
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment