fix spell mistake

Tommy Yang
2018-04-09 14:35:04 +08:00
parent d7bb418712
commit 840664447e
+3 -3
@@ -179,13 +179,13 @@ void some_function(const char* buffer, std::size_t len) {
std::size_t off = 0;
// Unpack the first msgpack data.
// off is updated when function is retuened.
// off is updated when function is returned.
unpack(result1, buffer, len, off);
// Unpack the second msgpack data.
// off is updated when function is retuened.
// off is updated when function is returned.
unpack(result2, buffer, len, off);
// Unpack the third msgpack data.
// off is updated when function is retuened.
// off is updated when function is returned.
unpack(result3, buffer, len, off);
assert(len == off);
...