Browse Source

[trac558] minor editorial fixes: missing parentheses and comment working.

JINMEI Tatuya 14 years ago
parent
commit
f0324078a0
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/lib/log/root_logger_name.cc
  2. 1 1
      src/lib/log/root_logger_name.h

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

@@ -37,7 +37,7 @@ setRootLoggerName(const std::string& name) {
 }
 
 const std::string& getRootLoggerName() {
-    return getRootLoggerNameInternal();
+    return (getRootLoggerNameInternal());
 }
 
 } // namespace log

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

@@ -19,7 +19,7 @@
 
 /// \brief Define Name of Root Logger
 ///
-/// IN BIND-10, the name root logger of a program is the name of the program
+/// In BIND-10, the name root logger of a program is the name of the program
 /// itself (in contrast to packages such as log4cxx where the root logger name
 //  is something like ".").  These trivial functions allow the setting and
 // getting of that name by the logger classes.