Last of the spelling fixed

This commit is contained in:
chase
2018-04-18 04:43:05 -07:00
committed by Jon Trulson
parent 6d3a19d8f9
commit 33d2749ea3
185 changed files with 279 additions and 279 deletions

View File

@@ -268,7 +268,7 @@ _csa_range_to_iso8601(time_t start, time_t end, char *buf)
{
char tmpstr1[BUFSIZ], tmpstr2[BUFSIZ];
/* validate: ticks must be +ve, and end can't preceed start */
/* validate: ticks must be +ve, and end can't precede start */
if ((start < 0) || (end < 0) || (end < start)) {
return(-1);
}