tutorial typos fixed (bug 379)
authorTom Henderson <tomh@tomh.org>
Wed, 22 Oct 2008 22:13:22 -0700
changeset 3771 21f40ccb03b3
parent 3770 33b1372d4108
child 3772 f0d8608ab155
tutorial typos fixed (bug 379)
doc/tutorial/building-topologies.texi
doc/tutorial/conceptual-overview.texi
doc/tutorial/tweaking.texi
--- a/doc/tutorial/building-topologies.texi	Mon Oct 20 16:56:40 2008 +0100
+++ b/doc/tutorial/building-topologies.texi	Wed Oct 22 22:13:22 2008 -0700
@@ -63,7 +63,7 @@
 since you can actually vary the number of nodes created on the LAN.  If you
 set nCsma to one, there will be a total of two nodes on the LAN (CSMA 
 channel) --- one required node and one ``extra'' node.  By default there are
-thee ``extra'' nodes as seen below:
+three ``extra'' nodes as seen below:
 
 @verbatim
 // Default Network Topology
@@ -589,7 +589,7 @@
 number of ``extra'' CSMA nodes.  Similarly, you can set @code{nWifi} to 
 control how many @code{STA} (station) nodes are created in the simulation.
 There will always be one @code{AP} (access point) node on the wireless 
-network.  By default there are thee ``extra'' CSMA nodes and three wireless 
+network.  By default there are three ``extra'' CSMA nodes and three wireless 
 @code{STA} nodes.
 
 The code begins by loading module include files just as was done in the
--- a/doc/tutorial/conceptual-overview.texi	Mon Oct 20 16:56:40 2008 +0100
+++ b/doc/tutorial/conceptual-overview.texi	Wed Oct 22 22:13:22 2008 -0700
@@ -681,7 +681,7 @@
 @end verbatim
 
 we actually scheduled events in the simulator at 1.0 seconds, 2.0 seconds and
-10.0 seconds.  When @code{Simulator::Run} is called, the ssytem will begin 
+10.0 seconds.  When @code{Simulator::Run} is called, the system will begin 
 looking through the list of scheduled events and executing them.  First it 
 will run the event at 1.0 seconds, which will enable the echo server 
 application.  Then it will run the event scheduled for t=2.0 seconds which 
--- a/doc/tutorial/tweaking.texi	Mon Oct 20 16:56:40 2008 +0100
+++ b/doc/tutorial/tweaking.texi	Wed Oct 22 22:13:22 2008 -0700
@@ -180,7 +180,7 @@
 colon to remind you in a relatively subtle way to conceptually separate the 
 logging component name from the class name.
 
-It turns out that in come cases, it can be hard to determine which method
+It turns out that in some cases, it can be hard to determine which method
 actually generates a log message.  If you look in the text above, you may
 wonder where the string ``@code{Received 1024 bytes from 10.1.1.2}'' comes
 from.  You can resolve this by ORing the @code{prefix_func} level into the
@@ -625,7 +625,7 @@
 start with the following code,
 
 @verbatim
-    int
+  int
   main (int argc, char *argv[])
   {
     uint32_t nPackets = 1;