aboutsummaryrefslogtreecommitdiff
path: root/gcc/spellcheck.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/spellcheck.c')
-rw-r--r--gcc/spellcheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/spellcheck.c b/gcc/spellcheck.c
index e641a56..bf74015 100644
--- a/gcc/spellcheck.c
+++ b/gcc/spellcheck.c
@@ -80,7 +80,7 @@ levenshtein_distance (const char *s, int len_s,
by inserting i characters. */
v1[0] = i + 1;
- /* Build the rest of the row by considering neighbours to
+ /* Build the rest of the row by considering neighbors to
the north, west and northwest. */
for (int j = 0; j < len_s; j++)
{