aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNazarbek Altybay <nazarbek.altybay@gmail.com>2018-10-01 06:59:54 +0300
committerPaul Yang <TeBoring@users.noreply.github.com>2018-09-30 20:59:54 -0700
commit887f5e5f395e7441fcf41704b5f6412e0510803f (patch)
treeb228a827316641d9343ed87750532d4749f53a7a
parent19ef4ab1c2b7efbc3dd7bedb670af580c960a576 (diff)
downloadprotobuf-887f5e5f395e7441fcf41704b5f6412e0510803f.tar.gz
protobuf-887f5e5f395e7441fcf41704b5f6412e0510803f.tar.bz2
protobuf-887f5e5f395e7441fcf41704b5f6412e0510803f.zip
Fixed typo (#5206)
-rw-r--r--src/google/protobuf/io/coded_stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/io/coded_stream.h b/src/google/protobuf/io/coded_stream.h
index 63631d1f..a66ace57 100644
--- a/src/google/protobuf/io/coded_stream.h
+++ b/src/google/protobuf/io/coded_stream.h
@@ -67,7 +67,7 @@
// // Read a file created by the above code.
// int fd = open("myfile", O_RDONLY);
// ZeroCopyInputStream* raw_input = new FileInputStream(fd);
-// CodedInputStream coded_input = new CodedInputStream(raw_input);
+// CodedInputStream* coded_input = new CodedInputStream(raw_input);
//
// coded_input->ReadLittleEndian32(&magic_number);
// if (magic_number != 1234) {