From fa5585f6ae81e0ca34397bb82fa12cc820c044c6 Mon Sep 17 00:00:00 2001 From: Peter Tissen Date: Thu, 18 Aug 2016 09:23:54 +0200 Subject: [PATCH] fix "with" -> "without" typo --- v2_0_cpp_object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2_0_cpp_object.md b/v2_0_cpp_object.md index 2fb9585..df32071 100644 --- a/v2_0_cpp_object.md +++ b/v2_0_cpp_object.md @@ -29,7 +29,7 @@ You can create a msgpack::object from a various type value using the following c object(const T& v, zone& z); ``` -You need pass a zone. When the object contains array and/or map, child objects are allocated in the zone. A value that has the type corresponding to str and bin, the contents of the value is copied to the zone without one exception. The exception is msgpack::type::raw_ref. When you call msgpack::object constructor with raw_ref as follows: +You need pass a zone. When the object contains array and/or map, child objects are allocated in the zone. A value that has the type corresponding to str and bin, the contents of the value is copied to the zone with one exception. The exception is msgpack::type::raw_ref. When you call msgpack::object constructor with raw_ref as follows: ```C++ msgpack::object obj(msgpack::type::raw_ref(data, size), zone);