--- a/doc/manual/attributes.texi Fri Sep 04 17:27:33 2009 +0200
+++ b/doc/manual/attributes.texi Fri Sep 04 17:23:34 2009 -0700
@@ -297,7 +297,7 @@
Note that initialization of the attribute relies on the macro
NS_OBJECT_ENSURE_REGISTERED (DropTailQueue) being called; if you leave
this out of your new class implementation, your attributes will not be
-initialized corretly.
+initialized correctly.
@subsection Basic usage
@@ -521,7 +521,7 @@
uint32_t m_cWnd; // Congestion window
@end verbatim
-Suppose that someone working with Tcp wanted to get or set the
+Suppose that someone working with TCP wanted to get or set the
value of that variable using the metadata system. If it were not
already provided by ns-3, the user could declare the following addition
in the runtime metadata system (to the TypeId declaration for TcpSocket):
@@ -597,7 +597,7 @@
of writing
the conversions to/from strings and attribute values. Most of this can be
copy/pasted with macro-ized code. For instance, consider class
-delcaration for Rectangle in the @code{src/mobility/} directory:
+declaration for Rectangle in the @code{src/mobility/} directory:
@verbatim
/**
@@ -663,7 +663,7 @@
found in @code{src/contrib} and not in the main tree. If you like this feature
and would like to provide feedback on it, please email us.
-Values for ns-3 attributes can be stored in an ascii or XML text file and
+Values for ns-3 attributes can be stored in an ASCII or XML text file and
loaded into a future simulation. This feature is known as the
ns-3 ConfigStore.
The ConfigStore code is in @code{src/contrib/}. It is not yet main-tree