From: Josh Soref Date: Sun, 23 Jul 2017 20:43:07 +0000 (-0400) Subject: spelling: single X-Git-Tag: trac5124a_base~35^2~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc16fe8abb7c2fc19f5cae30be218411a516c61a;p=thirdparty%2Fkea.git spelling: single --- diff --git a/src/lib/config/command-socket.dox b/src/lib/config/command-socket.dox index 70feca4695..bbe94e83c9 100644 --- a/src/lib/config/command-socket.dox +++ b/src/lib/config/command-socket.dox @@ -134,7 +134,7 @@ int main(int argc, const char* argv[]) { @section ctrlSocketImpl Control Channel Implementation -Control Channel is implemented in @ref isc::config::CommandMgr. It is a signleton +Control Channel is implemented in @ref isc::config::CommandMgr. It is a singleton class that allows registration of callbacks that handle specific commands. It internally supports a single command: @c list-commands that returns a list of supported commands. This component is expected to be shared among all daemons. diff --git a/src/lib/dhcpsrv/tests/generic_host_data_source_unittest.h b/src/lib/dhcpsrv/tests/generic_host_data_source_unittest.h index 3686e036a0..c5bef73346 100644 --- a/src/lib/dhcpsrv/tests/generic_host_data_source_unittest.h +++ b/src/lib/dhcpsrv/tests/generic_host_data_source_unittest.h @@ -351,7 +351,7 @@ public: /// - DHCPv6 boot file url option, /// - DHCPv6 information refresh time option, /// - DHCPv6 vendor option with vendor id 2495, - /// - DHCPv6 option 1024, with a sigle IPv6 address, + /// - DHCPv6 option 1024, with a single IPv6 address, /// - DHCPv6 empty option 1, within isc2 option space, /// - DHCPv6 option 2, within isc2 option space with 3 IPv6 addresses, /// diff --git a/src/lib/testutils/io_utils.cc b/src/lib/testutils/io_utils.cc index 5e0e3554d7..0081707e97 100644 --- a/src/lib/testutils/io_utils.cc +++ b/src/lib/testutils/io_utils.cc @@ -85,7 +85,7 @@ std::string decommentJSONfile(const std::string& input_file) { if (begin_pos != string::npos) { in_comment = true; if (end_pos != string::npos) { - // sigle line comment. Let's get rid of the content in between + // single line comment. Let's get rid of the content in between line = line.replace(begin_pos, end_pos + 2, end_pos + 2 - begin_pos, ' '); in_comment = false; } else {