summaryrefslogtreecommitdiff
path: root/pith/string.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-01-15 21:41:39 -0700
committerEduardo Chappa <chappa@washington.edu>2020-01-15 21:41:39 -0700
commit06c6ab430b223f6923fe74a4b8d11f3e626848a8 (patch)
tree2b483acf3ec2da573992c20b766a480e22f4c45a /pith/string.c
parent9822842646bc2b940d4b98a260ee4e3ac26fce57 (diff)
downloadalpine-06c6ab430b223f6923fe74a4b8d11f3e626848a8.tar.xz
* Fix a number of misspellings in the source code of Alpine. I hav only
fixed those that belong to the source code of Alpine and do not come from an external source. List contributed by Jens Schleusener.
Diffstat (limited to 'pith/string.c')
-rw-r--r--pith/string.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pith/string.c b/pith/string.c
index 8707485a..92a9a65c 100644
--- a/pith/string.c
+++ b/pith/string.c
@@ -520,7 +520,7 @@ srchstr(char *haystack, char *needle)
ss -- The string to search for, the smaller string
Search for last occurrence of ss in the is, and return a pointer
- into the string is when it is found. The search is case indepedent.
+ into the string is when it is found. The search is case independent.
----*/
char *
@@ -1223,7 +1223,7 @@ parse_date(char *given_date, struct date *d)
while(*p && (*p == '-' || *p == ',' || isspace((unsigned char)*p)))
p++;
} else {
- /* Something wierd, skip it and try to resynch */
+ /* Something weird, skip it and try to resynch */
while(*p && !isspace((unsigned char)*p) && *p != ',' && *p != '-')
p++;
while(*p && (isspace((unsigned char)*p) || *p == ',' || *p == '-'))
@@ -2819,7 +2819,7 @@ copy_quoted_string_asis(char *src)
/*
* isxpair -- return true if the first two chars in string are
- * hexidecimal characters
+ * hexadecimal characters
*/
int
isxpair(char *s)