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:26:11 UTC

arrow git commit: ARROW-1514: [C++] Fix a typo in document

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


ARROW-1514: [C++] Fix a typo in document

Author: Kouhei Sutou <ko...@clear-code.com>

Closes #1079 from kou/cpp-fix-typo and squashes the following commits:

be5664b6 [Kouhei Sutou] [C++] Fix a typo in document


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

Branch: refs/heads/master
Commit: f211463866a680b5e58394955a610f6765a02a27
Parents: 4a6a6cb
Author: Kouhei Sutou <ko...@clear-code.com>
Authored: Sun Sep 10 11:26:06 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Sun Sep 10 11:26:06 2017 -0400

----------------------------------------------------------------------
 cpp/src/arrow/ipc/writer.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/f2114638/cpp/src/arrow/ipc/writer.h
----------------------------------------------------------------------
diff --git a/cpp/src/arrow/ipc/writer.h b/cpp/src/arrow/ipc/writer.h
index bff7bb0..df03f4f 100644
--- a/cpp/src/arrow/ipc/writer.h
+++ b/cpp/src/arrow/ipc/writer.h
@@ -201,7 +201,7 @@ Status SerializeRecordBatch(const RecordBatch& batch, MemoryPool* pool,
 /// \param[in] scheam the schema to write
 /// \param[in] pool a MemoryPool to allocate memory from
 /// \param[out] out the serialized schema
-/// \returnn Status
+/// \return Status
 ARROW_EXPORT
 Status SerializeSchema(const Schema& schema, MemoryPool* pool,
                        std::shared_ptr<Buffer>* out);