Repository: arrow Updated Branches: refs/heads/master 68decb6f3 -> 6ae49a1dd
ARROW-892: [GLib] Fix GArrowTensor document Author: Kouhei Sutou <[email protected]> Closes #598 from kou/glib-tensor-doc and squashes the following commits: 3982db1 [Kouhei Sutou] [GLib] Fix GArrowTensor document Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/6ae49a1d Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/6ae49a1d Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/6ae49a1d Branch: refs/heads/master Commit: 6ae49a1dd6a3a8c4292987643cd11af4f35ab9b2 Parents: 68decb6 Author: Kouhei Sutou <[email protected]> Authored: Tue Apr 25 15:09:25 2017 -0400 Committer: Wes McKinney <[email protected]> Committed: Tue Apr 25 15:09:25 2017 -0400 ---------------------------------------------------------------------- c_glib/arrow-glib/tensor.cpp | 7 +++---- c_glib/doc/reference/arrow-glib-docs.sgml | 4 ++++ 2 files changed, 7 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/6ae49a1d/c_glib/arrow-glib/tensor.cpp ---------------------------------------------------------------------- diff --git a/c_glib/arrow-glib/tensor.cpp b/c_glib/arrow-glib/tensor.cpp index 468eb07..82f6635 100644 --- a/c_glib/arrow-glib/tensor.cpp +++ b/c_glib/arrow-glib/tensor.cpp @@ -30,11 +30,10 @@ G_BEGIN_DECLS /** * SECTION: tensor - * @short_description: Base class for all tensor classes + * @short_description: Tensor class. + * @include: arrow-glib/arrow-glib.h * - * #GArrowTensor is a base class for all tensor classes such as - * #GArrowInt8Tensor. - * #GArrowBooleanTensorBuilder to create a new tensor. + * #GArrowTensor is a tensor class. * * Since: 0.3.0 */ http://git-wip-us.apache.org/repos/asf/arrow/blob/6ae49a1d/c_glib/doc/reference/arrow-glib-docs.sgml ---------------------------------------------------------------------- diff --git a/c_glib/doc/reference/arrow-glib-docs.sgml b/c_glib/doc/reference/arrow-glib-docs.sgml index bfb2776..75e4a0a 100644 --- a/c_glib/doc/reference/arrow-glib-docs.sgml +++ b/c_glib/doc/reference/arrow-glib-docs.sgml @@ -41,6 +41,10 @@ <title>Array builder</title> <xi:include href="xml/array-builder.xml"/> </chapter> + <chapter id="tensor"> + <title>Tensor</title> + <xi:include href="xml/tensor.xml"/> + </chapter> <chapter id="type"> <title>Type</title> <xi:include href="xml/type.xml"/>
