summaryrefslogtreecommitdiff
path: root/docbook
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2017-02-24 10:50:39 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2017-02-24 11:06:59 +0000
commit8e6b5c14fadafa9541347b715f0fead2eb4702f7 (patch)
treec9d2815b6b84080588c4c2e3f0a5010d98037487 /docbook
parentbeea6736abfcd27176ba19954141cc4654c08f03 (diff)
downloadwireshark-8e6b5c14fadafa9541347b715f0fead2eb4702f7.tar.gz
Developers Guide typo
Change-Id: I125f8d9171ebdfaf7528d784e69d9768e6b1b8b7 Reviewed-on: https://code.wireshark.org/review/20262 Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'docbook')
-rw-r--r--docbook/wsdg_src/WSDG_chapter_dissection.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc b/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc
index f2979e71ad..d7c984b029 100644
--- a/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc
+++ b/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc
@@ -329,7 +329,7 @@ as +foo.type=1+ into the filter box.
* 'FT_UINT8' - This specifies this item is an 8bit unsigned integer.
This tallies with our call above where we tell it to only look at one byte.
-* 'BASE_DEC' - Tor an integer type, this tells it to be printed as a decimal
+* 'BASE_DEC' - For an integer type, this tells it to be printed as a decimal
number. It could be hexadecimal (BASE_HEX) or octal (BASE_OCT) if that made more sense.
We'll ignore the rest of the structure for now.