]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fixes by misspell-fixer
authorInspIRCd Robot <noreply@inspircd.org>
Thu, 15 Oct 2020 00:24:48 +0000 (00:24 +0000)
committerSadie Powell <sadie@witchery.services>
Thu, 15 Oct 2020 00:26:09 +0000 (01:26 +0100)
docs/conf/modules.conf.example
src/modules/extra/m_argon2.cpp

index 5db81955764afb8148403da6d334ab2310d83978..0ab0c7451585855d51093d79cc47890a5852d875 100644 (file)
 # memory: Memory hardness, in KiB. E.g. 131072 KiB = 128 MiB.
 # iterations: Time hardness in iterations. (def. 3)
 # lanes: How many parallel chains can be run. (def. 1)
-# threads: Maximum amount of threads each invokation can spawn. (def. 1)
+# threads: Maximum amount of threads each invocation can spawn. (def. 1)
 # length: Output length in bytes. (def. 32)
 # saltlength: Salt length in bytes. (def. 16)
 # version: Algorithm version, 10 or 13. (def. 13)
 # The parameters can be customized as follows:
 #<argon2 iterations="3" memory="131074" length="32" saltlength="16">
 # Defines the parameters that are common for all the variants (i/d/id).
-# Can be overriden on individual basis, e.g.
+# Can be overridden on individual basis, e.g.
 #<argon2i iterations="4">
 #<argon2d memory="131074"
 #<argon2id iterations="5" memory="262144" length="64" saltlength="32">
index 8a4b2f38ce8bd07df877a30b88592ccc536a5981..9270f0f7a2f255f0dce2917149d7ff46b42c2bbb 100644 (file)
@@ -47,7 +47,7 @@ class ProviderConfig
  private:
        static Argon2_version SanitizeArgon2Version(unsigned long version)
        {
-               // Note, 10 is 0x10, and 13 is 0x13. Refering to it as
+               // Note, 10 is 0x10, and 13 is 0x13. Referring to it as
                // dec 10 or 13 in the config file, for the name to
                // match better.
                switch (version)