fix typos in attribute section of manual
authorTom Henderson <tomh@tomh.org>
Wed, 27 Jan 2016 22:29:00 -0800
changeset 11680 8ec1579db3a0
parent 11679 4e11cd28d86f
child 11681 d0b2d73051f7
fix typos in attribute section of manual
doc/manual/source/attributes.rst
--- a/doc/manual/source/attributes.rst	Wed Jan 27 22:18:19 2016 -0800
+++ b/doc/manual/source/attributes.rst	Wed Jan 27 22:29:00 2016 -0800
@@ -41,8 +41,8 @@
 | :cpp:class:`ObjectFactory`            | Affects all instances created with  |
 |                                       | the factory.                        |
 +---------------------------------------+-------------------------------------+
-| :cpp:func:`XHelperSetAttribute ()`    | Affects all instances created by    |
-|                                       | the helper.                         |
+| Helper methods with (string/          | Affects all instances created by    |
+| AttributeValue) parameter pairs       | the helper.                         |
 +---------------------------------------+-------------------------------------+
 | | :cpp:func:`MyClass::SetX ()`        | Alters this particular instance.    |
 | | :cpp:func:`Object::SetAttribute ()` | Generally this is the only form     |
@@ -691,12 +691,12 @@
 
 Let's assume our new class, called :cpp:class:`ns3::MyMobility`,
 is a type of mobility model.  First, the class should inherit from
-it's parent class, :cpp:class:`ns3::MobilityModel`.
+its parent class, :cpp:class:`ns3::MobilityModel`.
 In the ``my-mobility.h`` header file::
 
     namespace ns3 {
     
-    class MyClass : public MobilityModel
+    class MyMobility : public MobilityModel
     {
 
 This requires we declare the :cpp:func:`GetTypeId ()` function.