diff options
author | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2012-08-29 17:05:38 +0000 |
---|---|---|
committer | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2012-08-29 17:05:38 +0000 |
commit | b840ba44b48113a68ab5e8a9740241327e3a1aaf (patch) | |
tree | 0310a462a473fffe4011ce95a5503b88b28876a9 /doc/README.developer | |
parent | cc3c9ba3e5226c098f0819bbdf8b60c4dc1a3506 (diff) | |
download | wireshark-b840ba44b48113a68ab5e8a9740241327e3a1aaf.tar.gz wireshark-b840ba44b48113a68ab5e8a9740241327e3a1aaf.tar.bz2 wireshark-b840ba44b48113a68ab5e8a9740241327e3a1aaf.zip |
Trivial typo fix and duplicate word removal.
svn path=/trunk/; revision=44695
Diffstat (limited to 'doc/README.developer')
-rw-r--r-- | doc/README.developer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.developer b/doc/README.developer index 02bc3b73ef..bdfe293213 100644 --- a/doc/README.developer +++ b/doc/README.developer @@ -1802,7 +1802,7 @@ Some constraints are imposed on the header fields depending on the type 'display, 'strings', and 'bitmask' fields, and all other non-integral types (i.e.. types that are _not_ FT_INT* and FT_UINT*) must use 'BASE_NONE, NULL, 0x0' as values for the 'display', 'strings', 'bitmask' -fields. The reason is simply that the type itself implictly defines the +fields. The reason is simply that the type itself implicitly defines the nature of 'display', 'strings', 'bitmask'. display @@ -1897,7 +1897,7 @@ field would be set to NULL. You can also use an extended version of the value_string for faster lookups. It requires a value_string array as input. If all of a contiguous range of values from min to max are present in the array -in ascending order the value will be used as as a direct index into a value_string array. +in ascending order the value will be used as a direct index into a value_string array. If the values in the array are not contiguous (ie: there are "gaps"), but are in ascending order a binary search will be used. |