summaryrefslogtreecommitdiff
path: root/src/htsindex.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2012-03-19 13:04:25 +0000
committerXavier Roche <xroche@users.noreply.github.com>2012-03-19 13:04:25 +0000
commit388b7dee2a2d558c0ee576a9213b5ea422a56c77 (patch)
tree4c0f66930ae08593dd39134395b42bcec7a15d61 /src/htsindex.c
parent0183f4dd84d8cc44d617fb48436881e79e2bf0f2 (diff)
httrack 3.45.1
Diffstat (limited to 'src/htsindex.c')
-rw-r--r--src/htsindex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htsindex.c b/src/htsindex.c
index 4ab69d0..3823feb 100644
--- a/src/htsindex.c
+++ b/src/htsindex.c
@@ -87,11 +87,11 @@ Please visit our Website: http://www.httrack.com
"uuu" \
"y" \
)
-// These (accepted) characters will be ignored at begining of a keyword
+// These (accepted) characters will be ignored at beginning of a keyword
#define KEYW_IGNORE_BEG "-_."
// These (accepted) characters will be stripped if at the end of a keyword
#define KEYW_STRIP_END "-_."
-// Words begining with these (accepted) characters will be ignored
+// Words beginning with these (accepted) characters will be ignored
#define KEYW_NOT_BEG "0123456789"
// Treat these characters as space characters - MUST NOT BE EMPTY!!!
#define KEYW_SPACE " ',;:!?\"\x0d\x0a\x09\x0b\x0c"
@@ -244,7 +244,7 @@ int index_keyword(const char* html_data,LLint size,const char* mime,const char*
cchar=KEYW_TRANSCODE_TO[pos];
if (strchr(KEYW_ACCEPT,cchar)) {
- /* Ignore some characters at begining */
+ /* Ignore some characters at beginning */
if ((len>0) || (!strchr(KEYW_IGNORE_BEG,cchar))) {
keyword[len++]=cchar;
keyword[len]='\0';