aboutsummaryrefslogtreecommitdiffstats
path: root/epan/color_filters.h
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2021-12-19 21:40:23 -0500
committerAndersBroman <a.broman58@gmail.com>2021-12-22 11:01:11 +0000
commit69d54d6f8e668b6018375121ea2afb99f3dd0177 (patch)
treed0fffa200bbaf4ef325ac00c75a79d682bf379c6 /epan/color_filters.h
parentb5928542b77cf789b112370bb7acc00942162519 (diff)
Corrects repeated words throughout the code.
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
Diffstat (limited to 'epan/color_filters.h')
-rw-r--r--epan/color_filters.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/color_filters.h b/epan/color_filters.h
index 1cc09bcb27..ca38d495b3 100644
--- a/epan/color_filters.h
+++ b/epan/color_filters.h
@@ -119,7 +119,7 @@ color_filters_colorize_packet(struct epan_dissect *edt);
/** Clone the currently active filter list.
*
- * @param user_data will be returned by each call to to color_filter_add_cb()
+ * @param user_data will be returned by each call to color_filter_add_cb()
* @param add_cb the callback function to add color filter
*/
WS_DLL_PUBLIC void color_filters_clone(gpointer user_data, color_filter_add_cb_func add_cb);
@@ -127,7 +127,7 @@ WS_DLL_PUBLIC void color_filters_clone(gpointer user_data, color_filter_add_cb_f
/** Load filters (import) from some other filter file.
*
* @param path the path to the import file
- * @param user_data will be returned by each call to to color_filter_add_cb()
+ * @param user_data will be returned by each call to color_filter_add_cb()
* @param err_msg a string with error message
* @param add_cb the callback function to add color filter
* @return TRUE, if read succeeded
@@ -136,7 +136,7 @@ WS_DLL_PUBLIC gboolean color_filters_import(const gchar *path, gpointer user_dat
/** Read filters from the global filter file (not the users file).
*
- * @param user_data will be returned by each call to to color_filter_add_cb()
+ * @param user_data will be returned by each call to color_filter_add_cb()
* @param err_msg a string with error message
* @param add_cb the callback function to add color filter
* @return TRUE, if read succeeded