aboutsummaryrefslogtreecommitdiff
path: root/src/hashcomp.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-07-01 12:33:51 +0100
committerGravatar Sadie Powell2021-07-01 12:33:51 +0100
commitd95d7fc4f574b4ce3593b6684dd9fd738c40fcab (patch)
tree88bc789896945fac5b82bc19dd4b8e440e590da6 /src/hashcomp.cpp
parentRequire that hideserver is set to a valid hostname. (diff)
parentAllow reloading SSL profiles on rehash. (diff)
Merge branch 'insp3' into master.
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 ad519540c..dc8dacc59 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 |.
*
******************************************************/