From ab86112c3e5ddbb1210b7eaa5cf2b4fd95f4cbf3 Mon Sep 17 00:00:00 2001 From: Josh Pelkey Date: Wed, 21 Apr 2010 15:00:25 -0400 Subject: [PATCH] fix typos in texi files for documentation build --- doc/manual/tracing.texi | 2 +- doc/testing/testing-framework.texi | 2 +- doc/tutorial/tracing.texi | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/manual/tracing.texi b/doc/manual/tracing.texi index ba37a3977..3c2c59813 100644 --- a/doc/manual/tracing.texi +++ b/doc/manual/tracing.texi @@ -812,7 +812,7 @@ using pcap tracing in the @code{Ipv4} protocol. Each protocol helper enabling t methods must implement a single virtual method inherited from this class. There will be a separate implementation for @code{Ipv6}, for example, but the only difference will be in the method names and signatures. Different method names -are required to disambiguate class @code{Ipv4} from @coe{Ipv6} which are both +are required to disambiguate class @code{Ipv4} from @code{Ipv6} which are both derived from class @code{Object}, and methods that share the same signature. @verbatim diff --git a/doc/testing/testing-framework.texi b/doc/testing/testing-framework.texi index fe99b05b6..e479c9977 100644 --- a/doc/testing/testing-framework.texi +++ b/doc/testing/testing-framework.texi @@ -562,7 +562,7 @@ a @code{--tempdir}, so the test runner will figure one out for you if you don't provide one. It first looks for environment variables named @code{TMP} and @code{TEMP} and uses those. If neither @code{TMP} nor @code{TEMP} are defined it picks @code{/tmp}. The code then tacks on an identifier indicating what -created the directory (ns-3) then the time (hh.mm.ss} followed by a large random +created the directory (ns-3) then the time (hh.mm.ss) followed by a large random number. The test runner creates a directory of that name to be used as the temporary directory. Temporary files then go into a directory that will be named something like, diff --git a/doc/tutorial/tracing.texi b/doc/tutorial/tracing.texi index dea995967..adb996f09 100644 --- a/doc/tutorial/tracing.texi +++ b/doc/tutorial/tracing.texi @@ -2083,7 +2083,7 @@ passed around (a @code{Ptr}) represents a pcap file. There is a one-liner in the trace sink to write a timestamp and the contents of the packet being dropped to the pcap file: -@end verbatim +@verbatim file->Write(Simulator::Now(), p); @end verbatim