aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fix-encoding-args.pl
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2021-12-30 22:03:45 -0500
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-12-31 22:50:40 +0000
commit67f05835cac0a26636a7e04739a4cc0dd225c077 (patch)
tree5c9ca8cd94a62f02b815a37fe124f6303dfa752c /tools/fix-encoding-args.pl
parent6930a2db83ec7aacb70e27bd7174a5d4a8be4cef (diff)
Fix more repeated words throughout
Fixes more repeated words seen throughout the code base.
Diffstat (limited to 'tools/fix-encoding-args.pl')
-rwxr-xr-xtools/fix-encoding-args.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fix-encoding-args.pl b/tools/fix-encoding-args.pl
index a4b714cea9..f124314a30 100755
--- a/tools/fix-encoding-args.pl
+++ b/tools/fix-encoding-args.pl
@@ -479,7 +479,7 @@ sub find_hf_array_entries {
# Find all the <fcn_name>() statements wherein the encoding arg is a value other than
# one of the "replace" values.
# Uses zero-length negative-lookahead to find <fcn_name>() statements for which the encoding
- # arg is something other than one of the the provided replace values.
+ # arg is something other than one of the provided replace values.
# Escape any "|" characters in the values to be matched
# and then create "alternatives" string containing all the value strings. Ex: "A|B|C\|D|..."
my $match_str = join "|", map { my $copy = $_; $copy =~ s{ ( \| ) }{\\$1}gx; $copy } values %$searchReplaceHRef;