Parcourir la source

added minor editorial fixes to doxygen comments.

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac399@3587 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya il y a 14 ans
Parent
commit
1d36ea0c2f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/lib/datasrc/zonetable.h

+ 2 - 2
src/lib/datasrc/zonetable.h

@@ -214,12 +214,12 @@ public:
     /// Find a \c Zone that best matches the given name in the \c ZoneTable.
     ///
     /// It searches the internal storage for a \c Zone that gives the
-    /// longest match against \c origin, and returns the result in the
+    /// longest match against \c name, and returns the result in the
     /// form of a \c FindResult object as follows:
     /// - \c code: The result code of the operation.
     ///   - \c SUCCESS: A zone that gives an exact match is found
     ///   - \c PARTIALMATCH: A zone whose origin is a super domain of
-    ///     \c zone is found (but there is no exact match)
+    ///     \c name is found (but there is no exact match)
     ///   - \c NOTFOUND: For all other cases.
     /// - \c zone: A pointer to the found \c Zone object if one is found;
     /// otherwise \c NULL.