aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbparse.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/tvbparse.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/tvbparse.h')
-rw-r--r--epan/tvbparse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/tvbparse.h b/epan/tvbparse.h
index ecf76f3133..2bc23fd87a 100644
--- a/epan/tvbparse.h
+++ b/epan/tvbparse.h
@@ -178,7 +178,7 @@ struct _tvbparse_elem_t {
* a char element.
*
* When looked for it returns a simple element one character long if the char
- * at the current offset matches one of the the needles.
+ * at the current offset matches one of the needles.
*/
WS_DLL_PUBLIC
tvbparse_wanted_t* tvbparse_char(const int id,
@@ -191,7 +191,7 @@ tvbparse_wanted_t* tvbparse_char(const int id,
* a not_char element.
*
* When looked for it returns a simple element one character long if the char
- * at the current offset does not match one of the the needles.
+ * at the current offset does not match one of the needles.
*/
WS_DLL_PUBLIC
tvbparse_wanted_t* tvbparse_not_char(const int id,