]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3706] Fixed the two typos in the comments of ProcessSpawn.
authorMarcin Siodelski <marcin@isc.org>
Mon, 2 Mar 2015 10:46:02 +0000 (11:46 +0100)
committerMarcin Siodelski <marcin@isc.org>
Mon, 2 Mar 2015 10:46:02 +0000 (11:46 +0100)
src/lib/util/process_spawn.cc
src/lib/util/process_spawn.h

index e53c671f7ccf586074ca265a8afb29589b007a45..c67eac2a61b73ca39b051c661d2d3d796f50e527 100644 (file)
@@ -34,8 +34,8 @@ namespace util {
 /// This class is made noncopyable so that we don't have attempts
 /// to make multiple copies of an object.  This avoid problems
 /// with multiple copies of objects for a single global resource
-/// such as the SIGCHLD signal handler.  In addition making it
-/// noncopyable keeps the static check codd from flagging the
+/// such as the SIGCHLD signal handler. In addition making it
+/// noncopyable keeps the static check code from flagging the
 /// lack of a copy constructor as an issue.
 class ProcessSpawnImpl : boost::noncopyable {
 public:
index 976072b33fb933e8bd33caa8a63d581ef5a0f752..b7e2d8b7ac4c6b25a47fcf696324550b49409214 100644 (file)
@@ -57,8 +57,8 @@ typedef std::vector<std::string> ProcessArgs;
 /// This class is made noncopyable so that we don't have attempts
 /// to make multiple copies of an object.  This avoid problems
 /// with multiple copies of objects for a single global resource
-/// such as the SIGCHLD signal handler.  In addition making it
-/// noncopyable keeps the static check codd from flagging the
+/// such as the SIGCHLD signal handler. In addition making it
+/// noncopyable keeps the static check code from flagging the
 /// lack of a copy constructor as an issue.
 ///
 /// @todo The SIGCHLD handling logic should be moved to the @c SignalSet