This is an automated email from the ASF dual-hosted git repository.
uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 0401e6d ARROW-1945: [C++] Fix doxygen documentation of array.h
0401e6d is described below
commit 0401e6d7f8f1aa8f62b1f783fd65e1bd1ced7c50
Author: Viktor Gal <[email protected]>
AuthorDate: Fri Dec 29 17:49:55 2017 +0100
ARROW-1945: [C++] Fix doxygen documentation of array.h
this is just a small fix in doxygen documentation of the c++ api
Author: Viktor Gal <[email protected]>
Closes #1442 from vigsterkr/doxygen_fix and squashes the following commits:
3557aef [Viktor Gal] fix doxygen example in array.h
---
cpp/src/arrow/array.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpp/src/arrow/array.h b/cpp/src/arrow/array.h
index 6721c7d..0ae1ddd 100644
--- a/cpp/src/arrow/array.h
+++ b/cpp/src/arrow/array.h
@@ -65,9 +65,9 @@ struct Decimal;
/// could cast from int64 to float64 like so:
///
/// Int64Array arr = GetMyData();
-/// auto new_data = arr->data()->ShallowCopy();
+/// auto new_data = arr.data()->ShallowCopy();
/// new_data->type = arrow::float64();
-/// Float64Array double_arr(new_data);
+/// DoubleArray double_arr(new_data);
///
/// This object is also useful in an analytics setting where memory may be
/// reused. For example, if we had a group of operations all returning doubles,
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].