Browse Source

[2390] Make minor documentation updates

Mukund Sivaraman 12 years ago
parent
commit
5d1563f963
2 changed files with 8 additions and 6 deletions
  1. 4 3
      src/lib/dns/rdata/generic/ns_2.cc
  2. 4 3
      src/lib/dns/rdata/generic/ptr_12.cc

+ 4 - 3
src/lib/dns/rdata/generic/ns_2.cc

@@ -75,9 +75,10 @@ NS::NS(InputBuffer& buffer, size_t) :
 /// \brief Constructor with a context of MasterLexer.
 ///
 /// The \c lexer should point to the beginning of valid textual
-/// representation of an NS RDATA.  The NSDNAME field can be non
-/// absolute if \c origin is non NULL, in which case \c origin is used
-/// to make it absolute.  It must not be represented as a quoted string.
+/// representation of an NS RDATA.  The NSDNAME field can be
+/// non-absolute if \c origin is non-NULL, in which case \c origin is
+/// used to make it absolute.  It must not be represented as a quoted
+/// string.
 ///
 /// \throw MasterLexer::LexerError General parsing error such as missing field.
 /// \throw Other Exceptions from the Name and RRTTL constructors if

+ 4 - 3
src/lib/dns/rdata/generic/ptr_12.cc

@@ -73,9 +73,10 @@ PTR::PTR(InputBuffer& buffer, size_t) :
 /// \brief Constructor with a context of MasterLexer.
 ///
 /// The \c lexer should point to the beginning of valid textual
-/// representation of a PTR RDATA.  The PTRDNAME field can be non
-/// absolute if \c origin is non NULL, in which case \c origin is used
-/// to make it absolute.  It must not be represented as a quoted string.
+/// representation of a PTR RDATA.  The PTRDNAME field can be
+/// non-absolute if \c origin is non-NULL, in which case \c origin is
+/// used to make it absolute.  It must not be represented as a quoted
+/// string.
 ///
 /// \throw MasterLexer::LexerError General parsing error such as missing field.
 /// \throw Other Exceptions from the Name and RRTTL constructors if