Skip to content

Commit 65c554f

Browse files
authored
Merge pull request google#371 from zaporozhets/fix_mistyping_in_comment
Fix mistype in comment
2 parents 39318b6 + 4016d62 commit 65c554f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/glog/logging.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,7 @@ namespace base_logging {
11041104
// buffer to allow for a '\n' and '\0'.
11051105
class GOOGLE_GLOG_DLL_DECL LogStreamBuf : public std::streambuf {
11061106
public:
1107-
// REQUIREMENTS: "len" must be >= 2 to account for the '\n' and '\n'.
1107+
// REQUIREMENTS: "len" must be >= 2 to account for the '\n' and '\0'.
11081108
LogStreamBuf(char *buf, int len) {
11091109
setp(buf, buf + len - 2);
11101110
}

0 commit comments

Comments
 (0)