Browse Source

[trac899] Corrected typo in a comment

Stephen Morris 14 years ago
parent
commit
dc44fdda4e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/log/log_formatter.h

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

@@ -142,7 +142,7 @@ public:
         if (logger_) {
             // Note that this method does a replacement and returns the
             // modified string. If there are multiple invocations of arg() (e.g.
-            // . logger.info(msgid).arg(xxx).arg(yyy)...), each invocation
+            // logger.info(msgid).arg(xxx).arg(yyy)...), each invocation
             // operates on the string returned by the previous one. This
             // sequential operation means that if we had a message like "%1 %2",
             // and called .arg("%2").arg(42), we would get "42 42"; the first