]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2011] clean up comments
authorRazvan Becheriu <razvan@isc.org>
Mon, 9 Aug 2021 15:01:22 +0000 (18:01 +0300)
committerFrancis Dupont <fdupont@isc.org>
Mon, 9 Aug 2021 15:08:24 +0000 (17:08 +0200)
src/lib/d2srv/d2_config.h

index ef62d22862992ff19726a15e00f2d7de72447208..892cd9729bcf39c6c66b6724061fcba520c3e382 100644 (file)
@@ -490,7 +490,7 @@ public:
 
     /// @brief Convenience method which returns the server's TSIG key name.
     ///
-    /// @return the key name in an std::string. If server has no TSIG key,
+    /// @return the key name in a std::string. If server has no TSIG key,
     /// the string will be empty.
     const std::string getKeyName() const;
 
@@ -526,7 +526,7 @@ private:
     /// enabled for use. It defaults to true.
     bool enabled_;
 
-    /// @brief Pointer to the server TSIGKeyInfo..
+    /// @brief Pointer to the server TSIGKeyInfo.
     /// Value is empty if the server is not configured for TSIG.
     TSIGKeyInfoPtr tsig_key_info_;
 
@@ -552,7 +552,7 @@ typedef boost::shared_ptr<DnsServerInfoStorage> DnsServerInfoStoragePtr;
 /// This class specifies a DNS domain and the list of DNS servers that support
 /// it.  Its primary use is to map a domain to the DNS server(s) responsible
 /// for it.
-/// @todo Currently the name entry for a domain is just an std::string. It
+/// @todo Currently the name entry for a domain is just a std::string. It
 /// may be worthwhile to change this to a dns::Name for purposes of better
 /// validation and matching capabilities.
 class DdnsDomain : public isc::data::UserContext, public isc::data::CfgToElement {
@@ -570,7 +570,7 @@ public:
 
     /// @brief Getter which returns the domain's name.
     ///
-    /// @return returns the name in an std::string.
+    /// @return returns the name in a std::string.
     const std::string getName() const {
         return (name_);
     }
@@ -579,7 +579,7 @@ public:
     ///
     /// @note: TSIG key infos are in servers.
     ///
-    /// @return returns the key name in an std::string. If domain has no
+    /// @return returns the key name in a std::string. If domain has no
     /// TSIG key, the string will be empty.
     const std::string getKeyName() const {
         return (key_name_);