diff src/util.c @ 8735:92cbf9713795

[gaim-migrate @ 9490] Patch by Jonathan Champ to corect the vairous speling mistakes we hav e in the coments and documentaion. Thansk Jonathan! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 21 Apr 2004 01:34:26 +0000
parents ddd2bf87fe8d
children ae3f33870550
line wrap: on
line diff
--- a/src/util.c	Wed Apr 21 01:20:41 2004 +0000
+++ b/src/util.c	Wed Apr 21 01:34:26 2004 +0000
@@ -323,7 +323,7 @@
 				}
 			}
 #if 0
-			/* I think this is rarely going to happend, if at all */
+			/* I think this is rarely going to happen, if at all */
 			else if ((num < 2) && (strchr("()<>@,;:/[]", *cur)))
 				/* There can't be these characters in the first two tokens. */
 				break;
@@ -1970,7 +1970,7 @@
 
 	/* Count how many times the delimiter appears */
 	i = 0; /* position in the source string */
-	j = 0; /* number of occurences of "delimiter" */
+	j = 0; /* number of occurrences of "delimiter" */
 	while (string[i] != '\0') {
 		if (!strncasecmp(&string[i], delimiter, length_del)) {
 			i += length_del;