From 80fbade76b6334cd55e53b216d3797687846efc1 Mon Sep 17 00:00:00 2001 From: Ashish Billore Date: Tue, 6 Oct 2020 11:25:58 +0900 Subject: [PATCH] Rewording and minor fixes --- v2_0_cpp_unpacker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2_0_cpp_unpacker.md b/v2_0_cpp_unpacker.md index 1633625..87e48e3 100644 --- a/v2_0_cpp_unpacker.md +++ b/v2_0_cpp_unpacker.md @@ -1,6 +1,6 @@ # msgpack::unpacker -msgpack::unpacker unpacks msgpack::object from a buffer contains [msgpack format](https://github.com/msgpack/msgpack/blob/master/spec.md#formats) data. msgpack provides the two unpack functionalities. One is used when a client controls a buffer, the other is used when a client don't want to control a buffer. Any approach uses msgpack::object_handle to access unpacked data. +msgpack::unpacker unpacks msgpack::object from a buffer contains [msgpack format](https://github.com/msgpack/msgpack/blob/master/spec.md#formats) data. msgpack provides two unpack functionalities. One is used when a client controls a buffer, the other is used when a client don't want to control a buffer. Both of these approaches use msgpack::object_handle to access unpacked data. ## Accessing unpacked data