From a9393f0909e71018608ec5342d1f45968c8344bf Mon Sep 17 00:00:00 2001 From: Taras Zaporozhets Date: Wed, 17 Oct 2018 15:54:37 +0300 Subject: [PATCH] Fix mistype in comment --- src/glog/logging.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glog/logging.h.in b/src/glog/logging.h.in index bf6d754..448253f 100644 --- a/src/glog/logging.h.in +++ b/src/glog/logging.h.in @@ -1104,7 +1104,7 @@ namespace base_logging { // buffer to allow for a '\n' and '\0'. class GOOGLE_GLOG_DLL_DECL LogStreamBuf : public std::streambuf { public: - // REQUIREMENTS: "len" must be >= 2 to account for the '\n' and '\n'. + // REQUIREMENTS: "len" must be >= 2 to account for the '\n' and '\0'. LogStreamBuf(char *buf, int len) { setp(buf, buf + len - 2); }