From dc5934ec4c95fd457d3631975b73b99a37288a51 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Fri, 22 Sep 2017 23:57:36 +0900 Subject: [PATCH] ARROW-1598: [C++] Fix diverged code comment in plasma tutorial --- cpp/apidoc/tutorials/plasma.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/apidoc/tutorials/plasma.md b/cpp/apidoc/tutorials/plasma.md index aed902413bb..8d54a102157 100644 --- a/cpp/apidoc/tutorials/plasma.md +++ b/cpp/apidoc/tutorials/plasma.md @@ -219,7 +219,7 @@ int main(int argc, char** argv) { // Start up and connect a Plasma client. PlasmaClient client; ARROW_CHECK_OK(client.Connect("/tmp/plasma", "", PLASMA_DEFAULT_RELEASE_DELAY)); - // Create an object with a random ObjectID. + // Create an object with a fixed ObjectID. ObjectID object_id = ObjectID::from_binary("00000000000000000000"); int64_t data_size = 1000; uint8_t *data;