summaryrefslogtreecommitdiff
path: root/docbook/wsdg_src
diff options
context:
space:
mode:
authorEugene Sukhodolin <eugene@sukhodolin.com>2014-08-10 23:02:30 -0700
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-08-11 06:37:56 +0000
commit9deb7690963ea1132dd896d853acd976dc8a75c2 (patch)
tree2092e24cae23459866820bda4d77717663389092 /docbook/wsdg_src
parent9c799212ac6c7a216504e7f8a40ae237a46469ab (diff)
downloadwireshark-9deb7690963ea1132dd896d853acd976dc8a75c2.tar.gz
Minor typo corrections
Change-Id: I5962ba6a9b9285095ddacf00307a3094c697461a Reviewed-on: https://code.wireshark.org/review/3546 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'docbook/wsdg_src')
-rw-r--r--docbook/wsdg_src/WSDG_chapter_build_intro.asciidoc2
-rw-r--r--docbook/wsdg_src/WSDG_chapter_dissection.asciidoc2
-rw-r--r--docbook/wsdg_src/WSDG_chapter_works.asciidoc8
3 files changed, 6 insertions, 6 deletions
diff --git a/docbook/wsdg_src/WSDG_chapter_build_intro.asciidoc b/docbook/wsdg_src/WSDG_chapter_build_intro.asciidoc
index 23e94af524..2c4177ca37 100644
--- a/docbook/wsdg_src/WSDG_chapter_build_intro.asciidoc
+++ b/docbook/wsdg_src/WSDG_chapter_build_intro.asciidoc
@@ -16,7 +16,7 @@ Wireshark consists of the following major parts:
* File I/O - using Wireshark's own wiretap library
-* Capture - using the libpcap/winpcap library, in /wiretap
+* Capture - using the libpcap/winpcap library, in '/wiretap'
* User interface - using the Qt or $$GTK+$$ and associated libraries
diff --git a/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc b/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc
index 13b8287bdd..7f7884023b 100644
--- a/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc
+++ b/docbook/wsdg_src/WSDG_chapter_dissection.asciidoc
@@ -15,7 +15,7 @@ decoding to subsequent dissectors for an encapsulated protocol.
Every dissection starts with the Frame dissector which dissects the packet
details of the capture file itself (e.g. timestamps). From there it passes the
-data on to the the lowest-level data dissector, e.g. the Ethernet dissector for
+data on to the lowest-level data dissector, e.g. the Ethernet dissector for
the Ethernet header. The payload is then passed on to the next dissector (e.g.
IP) and so on. At each stage, details of the packet will be decoded and
displayed.
diff --git a/docbook/wsdg_src/WSDG_chapter_works.asciidoc b/docbook/wsdg_src/WSDG_chapter_works.asciidoc
index 725aad1b4f..bfd3d5831c 100644
--- a/docbook/wsdg_src/WSDG_chapter_works.asciidoc
+++ b/docbook/wsdg_src/WSDG_chapter_works.asciidoc
@@ -50,15 +50,15 @@ Source code can be found in 'plugins'.
* Display Filters - The display filter engine at
'epan/dfilter'.
-Wiretap:: The wiretap library is used to read andwrite capture files in libpcap,
+Wiretap:: The wiretap library is used to read and write capture files in libpcap,
pcapng, and many other file formats. Source code is in the
'wiretap' directory.
-Capture:: The interface with the capture engine. Source code in the
+Capture:: The interface with the capture engine. Source code is in the
root directory.
Dumpcap:: The capture engine itself. This is the only part that is to execute
-with elevated privileges. Source code in the root directory.
+with elevated privileges. Source code is in the root directory.
WinPcap and libpcap:: These are separate libraries that provide packet capture
and filtering support on different platforms. The filtering WinPcap and libpcap
@@ -80,7 +80,7 @@ privileges, allowing the main part of the code (dissectors, user interface,
etc) to run with normal user privileges.
To hide all the low-level machine dependent details from Wireshark, the libpcap
-and WinPcap (see <<ChLibsPcap>>) libraries is used. These libraries provide a
+and WinPcap (see <<ChLibsPcap>>) libraries are used. These libraries provide a
general purpose interface to capture packets and are used by a wide variety of
applications.