summaryrefslogtreecommitdiff
path: root/pith/string.c
diff options
context:
space:
mode:
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 8707485..92a9a65 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)