]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: instantiate
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 17:32:51 +0000 (13:32 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 17:32:51 +0000 (13:32 -0400)
src/lib/cc/simple_parser.h
src/lib/dhcpsrv/host_mgr.h

index 17d257dad41ea2dbced3fa2ef8a582c4a6f5126a..1e2f6ec477611f4b9623caa8de90e809d7957f71 100644 (file)
@@ -154,7 +154,7 @@ protected:
 
     /// @brief Returns an integer value with range checking from a scope
     ///
-    /// This template should be instantied in parsers when useful
+    /// This template should be instantiated in parsers when useful
     ///
     /// @tparam int_type the integer type e.g. uint32_t
     /// @param scope specified parameter will be extracted from this scope
@@ -178,7 +178,7 @@ protected:
 
     /// @brief Returns a converted value from a scope
     ///
-    /// This template should be instantied in parsers when useful
+    /// This template should be instantiated in parsers when useful
     ///
     /// @tparam target_type the type of the result
     /// @tparam convert the conversion function std::string -> target_type
index e985f64d40943e596f8ae43d7fa26ed8188d691d..c177f58829fca739bda79f79a8bf21445ee68a83 100644 (file)
@@ -273,7 +273,7 @@ public:
     ///
     /// Note: This should be used only for testing. Do not use
     /// in production. Normal control flow assumes that
-    /// HostMgr::create(...) is called and it instnatiates
+    /// HostMgr::create(...) is called and it instantiates
     /// appropriate host data source. However, some tests
     /// (e.g. host_cmds) implement their own very simple
     /// data source. It's not production ready by any means,