summaryrefslogtreecommitdiff
path: root/src/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash.c')
-rw-r--r--src/hash.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/hash.c b/src/hash.c
index 5e48fc7..04cc5f5 100644
--- a/src/hash.c
+++ b/src/hash.c
@@ -1,5 +1,6 @@
/* Hash tables.
- Copyright (C) 2000-2011, 2015, 2018 Free Software Foundation, Inc.
+ Copyright (C) 2000-2011, 2015, 2018-2019 Free Software Foundation,
+ Inc.
This file is part of GNU Wget.
@@ -199,7 +200,7 @@ struct hash_table {
being HASHFUN. */
#define HASH_POSITION(key, hashfun, size) ((hashfun) (key) % size)
-/* Find a prime near, but greather than or equal to SIZE. The primes
+/* Find a prime near, but greater than or equal to SIZE. The primes
are looked up from a table with a selection of primes convenient
for this purpose.