aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.h
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
commit96a24cc79f7a32851cc2005603e32633389043a3 (patch)
tree62c91332176b091409c8f06937bbce734155981e /epan/strutil.h
parenta6e56df8b683bb696655c331f64f22abc8f36af4 (diff)
Fix spelling/typos found using a list of commonly misspelled words.
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
Diffstat (limited to 'epan/strutil.h')
-rw-r--r--epan/strutil.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/strutil.h b/epan/strutil.h
index 781ef4a5e2..833b4b9b37 100644
--- a/epan/strutil.h
+++ b/epan/strutil.h
@@ -220,7 +220,7 @@ guint8 * convert_string_to_hex(const char *string, size_t *nbytes);
*/
char * convert_string_case(const char *string, gboolean case_insensitive);
-/** Finds the first occurence of string 'needle' in string 'haystack'.
+/** Finds the first occurrence of string 'needle' in string 'haystack'.
* The matching is done in a case insensitive manner.
*
* @param haystack The string possibly containing the substring
@@ -256,7 +256,7 @@ gchar* ws_strdup_escape_char (const gchar *str, const gchar chr);
*
* @param str The string to be copied
* @param char The character to be escaped
- * @return A copy of the string with every occurence of double 'chr' in
+ * @return A copy of the string with every occurrence of double 'chr' in
* the original string being copied as a single 'chr'.
*/
gchar* ws_strdup_unescape_char (const gchar *str, const gchar chr);
@@ -273,7 +273,7 @@ gchar* ws_strdup_unescape_char (const gchar *str, const gchar chr);
gchar *string_replace(const gchar* str, const gchar *old_val, const gchar *new_val);
/**
- * g_strcmp0 appears first in GLIB 2.16, define it locally for earlier versions.
+ * g_strcmp0 appears first in GLIB 2.16, define it locally for earlier versions.
*/
#if !GLIB_CHECK_VERSION(2,16,0)