Browse Source

[trac558] three trivial changes in docs

two spaces, one letter 'e' added
Jelte Jansen 14 years ago
parent
commit
c02f78e1a0
3 changed files with 3 additions and 3 deletions
  1. 1 1
      src/lib/log/compiler/message.cc
  2. 1 1
      src/lib/log/logger.cc
  3. 1 1
      src/lib/log/logger_support.h

+ 1 - 1
src/lib/log/compiler/message.cc

@@ -214,7 +214,7 @@ splitNamespace(string ns) {
     } else {
     } else {
 
 
         // Namespaces components are separated by double colon characters -
         // Namespaces components are separated by double colon characters -
-         //convert to single colons.
+        // convert to single colons.
         size_t dcolon;
         size_t dcolon;
         while ((dcolon = ns.find("::")) != string::npos) {
         while ((dcolon = ns.find("::")) != string::npos) {
             ns.replace(dcolon, 2, ":");
             ns.replace(dcolon, 2, ":");

+ 1 - 1
src/lib/log/logger.cc

@@ -32,7 +32,7 @@ namespace isc {
 namespace log {
 namespace log {
 
 
 // Initialize Logger implementation.  Does not check whether the implementation
 // Initialize Logger implementation.  Does not check whether the implementation
-// has already been ionitialized - that was done by the caller (getLoggerptr()).
+// has already been initialized - that was done by the caller (getLoggerptr()).
 void Logger::initLoggerImpl() {
 void Logger::initLoggerImpl() {
     loggerptr_ = new LoggerImpl(name_, infunc_);
     loggerptr_ = new LoggerImpl(name_, infunc_);
 }
 }

+ 1 - 1
src/lib/log/logger_support.h

@@ -25,7 +25,7 @@ namespace log {
 /// \brief Run-Time Initialization
 /// \brief Run-Time Initialization
 ///
 ///
 /// This code will be used until the logger is fully integrated into the BIND-10
 /// This code will be used until the logger is fully integrated into the BIND-10
-/// configuration database.  It performs run-time initialization of th logger,
+/// configuration database.  It performs run-time initialization of the logger,
 /// in particular supplying run-time choices to it:
 /// in particular supplying run-time choices to it:
 ///
 ///
 /// * The severity (and if applicable, debug level) at which to log
 /// * The severity (and if applicable, debug level) at which to log