aboutsummaryrefslogtreecommitdiff
path: root/src/hashcomp.cpp
diff options
context:
space:
mode:
authorGravatar Josh Soref2021-06-21 16:47:06 -0400
committerGravatar GitHub2021-06-21 21:47:06 +0100
commitde6d4dbd1e8845e08c2d87cd89a919e5b21ba619 (patch)
treef3c964db5830e7b15361889cd61daceabe3d7466 /src/hashcomp.cpp
parentUpdate example configuration for 'if-host-match' oper autologin option. (diff)
Fix various spelling issues (#1883).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
Diffstat (limited to 'src/hashcomp.cpp')
-rw-r--r--src/hashcomp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp
index 5ca032229..93649f6db 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -38,7 +38,7 @@
* the best way to write hash functions to hash irc
* nicknames, channels etc.
* We are lucky as C++ developers as unordered_map does
- * a lot of this for us. It does intellegent memory
+ * a lot of this for us. It does intelligent memory
* requests, bucketing, search functions, insertion
* and deletion etc. All we have to do is write some
* overloaded comparison and hash value operators which
@@ -48,7 +48,7 @@
* Case insensitivity: The hash_map will be case
* insensitive.
*
- * Scandanavian Comparisons: The characters [, ], \ will
+ * Scandinavian Comparisons: The characters [, ], \ will
* be considered the lowercase of {, } and |.
*
******************************************************/