Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 22BF4200D01 for ; Fri, 22 Sep 2017 21:09:43 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 213DE1609D0; Fri, 22 Sep 2017 19:09:43 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 6657E1609BE for ; Fri, 22 Sep 2017 21:09:42 +0200 (CEST) Received: (qmail 20543 invoked by uid 500); 22 Sep 2017 19:09:41 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 20534 invoked by uid 99); 22 Sep 2017 19:09:41 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Sep 2017 19:09:41 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7E700F5826; Fri, 22 Sep 2017 19:09:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pcmoritz@apache.org To: commits@arrow.apache.org Message-Id: <49a070ac60e94de5a2be6a0bd29d12fc@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-1598: [C++] Fix diverged code comment in plasma tutorial Date: Fri, 22 Sep 2017 19:09:39 +0000 (UTC) archived-at: Fri, 22 Sep 2017 19:09:43 -0000 Repository: arrow Updated Branches: refs/heads/master c0a5019bf -> b41a4ee23 ARROW-1598: [C++] Fix diverged code comment in plasma tutorial Even though fixed object id is used in implementation, comment says random object id is created. Author: Kentaro Hayashi Closes #1124 from kenhys/arrow-1598 and squashes the following commits: dc5934e [Kentaro Hayashi] ARROW-1598: [C++] Fix diverged code comment in plasma tutorial Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/b41a4ee2 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/b41a4ee2 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/b41a4ee2 Branch: refs/heads/master Commit: b41a4ee2322d0084ff78b78ccfebc4536f7e0a62 Parents: c0a5019 Author: Kentaro Hayashi Authored: Fri Sep 22 12:09:09 2017 -0700 Committer: Philipp Moritz Committed: Fri Sep 22 12:09:09 2017 -0700 ---------------------------------------------------------------------- cpp/apidoc/tutorials/plasma.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/b41a4ee2/cpp/apidoc/tutorials/plasma.md ---------------------------------------------------------------------- diff --git a/cpp/apidoc/tutorials/plasma.md b/cpp/apidoc/tutorials/plasma.md index aed9024..8d54a10 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;