You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/09/10 15:27:53 UTC

arrow git commit: [C++] Fix API change in documentation

Repository: arrow
Updated Branches:
  refs/heads/master f21146386 -> e73d6c116


[C++] Fix API change in documentation

Closes #1078

Change-Id: I0c3263757088ccb352c5428a86d6e756fc54018f


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/e73d6c11
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/e73d6c11
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/e73d6c11

Branch: refs/heads/master
Commit: e73d6c1165de4e39cde246f75edeba4dd096a696
Parents: f211463
Author: rvernica <rv...@gmail.com>
Authored: Sat Sep 9 18:10:24 2017 -0700
Committer: Wes McKinney <we...@twosigma.com>
Committed: Sun Sep 10 11:27:20 2017 -0400

----------------------------------------------------------------------
 cpp/apidoc/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/e73d6c11/cpp/apidoc/index.md
----------------------------------------------------------------------
diff --git a/cpp/apidoc/index.md b/cpp/apidoc/index.md
index ab9bbaa..293241c 100644
--- a/cpp/apidoc/index.md
+++ b/cpp/apidoc/index.md
@@ -84,7 +84,7 @@ undefined.
     const uint8_t* null_bitmap = int64_array->null_bitmap_data();
 
     // Get the pointer to the actual data
-    const int64_t* data = int64_array->raw_data();
+    const int64_t* data = int64_array->raw_values();
 
 In the above example, we have yet skipped explaining two things in the code.
 On constructing the builder, we have passed `arrow::int64()` to it. This is