summaryrefslogtreecommitdiff
path: root/tools/checkhf.pl
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-08-25 11:44:36 -0400
committerBill Meier <wmeier@newsguy.com>2014-08-25 15:46:10 +0000
commitcdc80af27e2014f8b869133eeb25cfc90c449ee6 (patch)
tree0ca73e8174bef24fc81b8d9dbe895ae78ad5c41a /tools/checkhf.pl
parent3ba56cadf02da8f512f1e16916447290703dc488 (diff)
downloadwireshark-cdc80af27e2014f8b869133eeb25cfc90c449ee6.tar.gz
checkhf.pl: (Trivial) fix two typos
Change-Id: I2a63127dcf819d671a4c814dcbd82b2dca5022d3 Reviewed-on: https://code.wireshark.org/review/3838 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'tools/checkhf.pl')
-rwxr-xr-xtools/checkhf.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkhf.pl b/tools/checkhf.pl
index ef2767221e..aeec1982bc 100755
--- a/tools/checkhf.pl
+++ b/tools/checkhf.pl
@@ -75,7 +75,7 @@
# (which may include strings which are not actually valid
# hf_... variable references).
# 4. Checks:
-# If entries in hf_defs not in hf_usage then "unused" (or static hf_defs only)
+# If entries in hf_defs not in hf_usage then "unused" (for static hf_defs only)
# If entries in hf_defs not in hf_array_entries then "ERROR: NO ARRAY";
use strict;
@@ -129,7 +129,7 @@ while (my $filename = $ARGV[0]) {
print_list("Unused entry: $filename, ", $unused_href);
# 2. Are all the hf_defs entries (static and global) in hf_array_entries ?
-# (Note: if a static hfDef is "unused", don't check for same in hf_array_entries)
+# (Note: if a static hf_def is "unused", don't check for same in hf_array_entries)
# if not: "ERROR: NO ARRAY"
## Checking for missing global defs currently gives false positives