]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[4497] Spelling
authorFrancis Dupont <fdupont@isc.org>
Thu, 7 Jul 2016 12:58:50 +0000 (14:58 +0200)
committerMarcin Siodelski <marcin@isc.org>
Fri, 8 Jul 2016 05:50:19 +0000 (07:50 +0200)
src/bin/dhcp4/dhcp4_srv.cc
src/lib/cfgrpt/tests/.gitignore
src/lib/dhcp/option.h
src/lib/dhcp/option6_ia.h
src/lib/dhcp/pkt.h

index 3be5ec5f1cda81672c891855c894863f3d774918..7f598ef007a86dd3737d323f66c7219f632edee3 100644 (file)
@@ -995,7 +995,7 @@ Dhcpv4Srv::processPacket(Pkt4Ptr& query, Pkt4Ptr& rsp) {
         // Clear skip flag if it was set in previous callouts
         callout_handle->setStatus(CalloutHandle::NEXT_STEP_CONTINUE);
 
-        // Enable copying options from the query and response packet within
+        // Enable copying options from the query and response packets within
         // hook library.
         ScopedEnableOptionsCopy<Pkt4> query_resp_options_copy(query, rsp);
 
index 156b8250ac737c628a0635c55e0a56a15ddd1fd7..d6d1ec87a16d87fa5b5e5226d9c5ccc3278a1396 100644 (file)
@@ -1 +1 @@
-/run_unittests
\ No newline at end of file
+/run_unittests
index f93f9c83fcba9a06b1466927a638688e0479bea2..6f53fcf843c37970c807b5829eaa80bc1438bab6 100644 (file)
@@ -163,10 +163,10 @@ public:
 
     /// @brief Copies this option and returns a pointer to the copy.
     ///
-    /// This function must be overriden in the derived classes to make
+    /// This function must be overridden in the derived classes to make
     /// a copy of the derived type. The simplest way to do it is by
     /// calling @ref cloneInternal function with an appropriate template
-    /// parmater.
+    /// parameter.
     ///
     /// @return Pointer to the copy of the option.
     virtual OptionPtr clone() const;
@@ -203,7 +203,7 @@ public:
 
     /// @brief Returns string representation of the value
     ///
-    /// This is terse repesentation used in cases where client classification
+    /// This is terse representation used in cases where client classification
     /// refers to a specific option.
     ///
     /// @return string that represents the value of the option.
@@ -272,7 +272,7 @@ public:
     ///
     /// @param type type of requested suboption
     ///
-    /// @return shared_ptr to requested suoption
+    /// @return shared_ptr to requested suboption
     OptionPtr getOption(uint16_t type) const;
 
     /// @brief Returns all encapsulated options.
@@ -375,8 +375,8 @@ public:
     /// @brief Checks if options are equal.
     ///
     /// This method calls a virtual @c equals function to compare objects.
-    /// This method is not meant to be overriden in the derived classes.
-    /// Instead, the other @c equals function must be overriden.
+    /// This method is not meant to be overridden in the derived classes.
+    /// Instead, the other @c equals function must be overridden.
     ///
     /// @param other Pointer to the option to compare this option to.
     /// @return true if both options are equal, false otherwise.
index 232d15d6fc51bdedce1d9abd8a9c309eb80189cf..66f8a9d72db44970fb64a241b386b0dddb4cba95 100644 (file)
@@ -61,7 +61,7 @@ public:
     ///
     /// @param indent number of leading space characters
     ///
-    /// @return string with text represenation
+    /// @return string with text representation
     virtual std::string toText(int indent = 0) const;
 
     /// Sets T1 timer.
index 5c836d95acd42fd2e6ad47dd959d8cb6681d7662..2f33c6c967f31dd097a872496f1937a64e5dc929 100644 (file)
@@ -31,7 +31,7 @@ namespace dhcp {
 /// server is going to invoke a callout (hook library) where copying options
 /// must be enabled by default. When the callouts return copying options
 /// should be disabled. The use of RAII object eliminates the need for
-/// explicitly re-renabling options copying and is safer in case of
+/// explicitly re-disabling options copying and is safer in case of
 /// exceptions thrown by callouts and a presence of multiple exit points.
 template<typename PktType>
 class ScopedEnableOptionsCopy {