summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-07-23 16:08:51 +0200
committerMax Kellermann <max@musicpd.org>2020-07-23 16:08:52 +0200
commiteb87c282256b784a2c7301473436488816bb683e (patch)
tree9cb7ffc847ee51cf1a2cc8765518e30ab5b314ab
parent47f54b5650bb56d0010b3a6542769a4c15bfdba7 (diff)
util/CharUtil: fix doc typo
-rw-r--r--src/util/CharUtil.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/CharUtil.hxx b/src/util/CharUtil.hxx
index 7d573907d..475dd74b9 100644
--- a/src/util/CharUtil.hxx
+++ b/src/util/CharUtil.hxx
@@ -74,7 +74,7 @@ IsWhitespaceFast(const char ch) noexcept
* Is this a non-printable ASCII character? Returns false for
* non-ASCII characters.
*
- * Note that this is not the opposide of IsNonPrintableASCII().
+ * Note that this is not the opposite of IsNonPrintableASCII().
*/
constexpr bool
IsPrintableASCII(char ch) noexcept
@@ -85,7 +85,7 @@ IsPrintableASCII(char ch) noexcept
/**
* 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
IsNonPrintableASCII(char ch) noexcept