diff options
author | Jim Meyering <jim@meyering.net> | 2012-06-03 21:48:40 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2012-06-03 21:50:03 +0200 |
commit | d7966de55ced118183582ca258a86c3ea7e10fdd (patch) | |
tree | 294cf6465209fe8abcaa548cbe5a80886367ee78 /gettext-tools/libgrep | |
parent | c971a7da9f84c9e468bef674f1971a7065577101 (diff) | |
download | external_gettext-d7966de55ced118183582ca258a86c3ea7e10fdd.zip external_gettext-d7966de55ced118183582ca258a86c3ea7e10fdd.tar.gz external_gettext-d7966de55ced118183582ca258a86c3ea7e10fdd.tar.bz2 |
Spelling fixes.
Diffstat (limited to 'gettext-tools/libgrep')
-rw-r--r-- | gettext-tools/libgrep/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-tools/libgrep/kwset.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gettext-tools/libgrep/ChangeLog b/gettext-tools/libgrep/ChangeLog index 6520963..0fefefc 100644 --- a/gettext-tools/libgrep/ChangeLog +++ b/gettext-tools/libgrep/ChangeLog @@ -1,3 +1,7 @@ +2012-06-03 Jim Meyering <jim@meyering.net> + + * kwset.c: Spelling fixes. + 2010-06-04 Bruno Haible <bruno@clisp.org> * gettext-0.18.1 released. diff --git a/gettext-tools/libgrep/kwset.c b/gettext-tools/libgrep/kwset.c index 2eb4a5c..d944f10 100644 --- a/gettext-tools/libgrep/kwset.c +++ b/gettext-tools/libgrep/kwset.c @@ -1,5 +1,5 @@ /* kwset.c - search for any of a set of keywords. - Copyright 1989, 1998, 2000, 2005-2006, 2010 Free Software Foundation, Inc. + Copyright 1989, 1998, 2000, 2005-2006, 2010, 2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ The author may be reached (Email) at the address mike@ai.mit.edu, or (US mail) as Mike Haertel c/o Free Software Foundation. */ -/* The algorithm implemented by these routines bears a startling resemblence +/* The algorithm implemented by these routines bears a startling resemblance to one discovered by Beate Commentz-Walter, although it is not identical. See "A String Matching Algorithm Fast on the Average," Technical Report, IBM-Germany, Scientific Center Heidelberg, Tiergartenstrasse 15, D-6900 @@ -438,7 +438,7 @@ kwsprep (kwset_t kwset) /* Update the delta table for the descendents of this node. */ treedelta (curr->links, curr->depth, delta); - /* Compute the failure function for the decendents of this node. */ + /* Compute the failure function for the descendants of this node. */ treefails (curr->links, curr->fail, kwset->trie); /* Update the shifts at each node in the current node's chain |