]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2526] Modified a couple of method header comments
authorStephen Morris <stephen@isc.org>
Fri, 14 Dec 2012 14:47:10 +0000 (14:47 +0000)
committerStephen Morris <stephen@isc.org>
Fri, 14 Dec 2012 14:47:10 +0000 (14:47 +0000)
src/lib/dhcp/option_definition.h

index 4c94a0f410129bbaaeaa554c602b3843b8384b69..9f6bef2c9975a69c5b0a68c67d5d803ae945795b 100644 (file)
@@ -50,21 +50,21 @@ typedef boost::shared_ptr<OptionDefinition> OptionDefinitionPtr;
 
 /// @brief Forward declaration to OptionInt.
 ///
-/// This forward declaration is needed to access OptionInt class
-/// without having to include option_int.h header. This is because
-/// this header includes libdhcp++.h and this causes circular
-/// inclusion between libdhcp++.h, option_definition.h and
+/// This forward declaration is needed to access the OptionInt class without
+/// having to include the option_int.h header file. It is required because
+/// this header includes libdhcp++.h, and including option_int.h would cause
+/// circular inclusion between libdhcp++.h, option_definition.h and
 /// option6_int.h.
 template<typename T>
 class OptionInt;
 
 /// @brief Forward declaration to OptionIntArray.
 ///
-/// This forward declaration is needed to access OptionIntArray class
-/// without having to include option_int_array.h header. This is because
-/// this header includes libdhcp++.h and this causes circular
-/// inclusion between libdhcp++.h, option_definition.h and
-/// option_int_array.h.
+/// This forward declaration is needed to access the OptionIntArray class
+/// without having to include the option_int_array.h header file. It is
+/// required because this header includes libdhcp++.h, and including
+/// option_int_array.h would cause circular inclusion between libdhcp++.h,
+/// option_definition.h and option_int_array.h.
 template<typename T>
 class OptionIntArray;