You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2017/09/18 00:00:39 UTC

arrow git commit: Remove garbage ")"

Repository: arrow
Updated Branches:
  refs/heads/master e09377245 -> b635d4c90


Remove garbage ")"


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

Branch: refs/heads/master
Commit: b635d4c9046481422aaa3a93a4c8f83f73d16c64
Parents: e093772
Author: Kouhei Sutou <ko...@clear-code.com>
Authored: Mon Sep 18 08:57:04 2017 +0900
Committer: Kouhei Sutou <ko...@clear-code.com>
Committed: Mon Sep 18 09:00:03 2017 +0900

----------------------------------------------------------------------
 cpp/src/arrow/builder.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/b635d4c9/cpp/src/arrow/builder.h
----------------------------------------------------------------------
diff --git a/cpp/src/arrow/builder.h b/cpp/src/arrow/builder.h
index 4d18a3e..28f3cb9 100644
--- a/cpp/src/arrow/builder.h
+++ b/cpp/src/arrow/builder.h
@@ -207,7 +207,7 @@ class ARROW_EXPORT PrimitiveBuilder : public ArrayBuilder {
   /// \param[in] values a contiguous C array of values
   /// \param[in] length the number of values to append
   /// \param[in] valid_bytes an optional sequence of bytes where non-zero
-  /// indicates a valid (non-null) value)
+  /// indicates a valid (non-null) value
   /// \return Status
   Status Append(const value_type* values, int64_t length,
                 const uint8_t* valid_bytes = nullptr);
@@ -423,7 +423,7 @@ class ARROW_EXPORT AdaptiveUIntBuilder : public internal::AdaptiveIntBuilderBase
   /// \param[in] values a contiguous C array of values
   /// \param[in] length the number of values to append
   /// \param[in] valid_bytes an optional sequence of bytes where non-zero
-  /// indicates a valid (non-null) value)
+  /// indicates a valid (non-null) value
   /// \return Status
   Status Append(const uint64_t* values, int64_t length,
                 const uint8_t* valid_bytes = nullptr);
@@ -485,7 +485,7 @@ class ARROW_EXPORT AdaptiveIntBuilder : public internal::AdaptiveIntBuilderBase
   /// \param[in] values a contiguous C array of values
   /// \param[in] length the number of values to append
   /// \param[in] valid_bytes an optional sequence of bytes where non-zero
-  /// indicates a valid (non-null) value)
+  /// indicates a valid (non-null) value
   /// \return Status
   Status Append(const int64_t* values, int64_t length,
                 const uint8_t* valid_bytes = nullptr);
@@ -555,7 +555,7 @@ class ARROW_EXPORT BooleanBuilder : public ArrayBuilder {
   /// \param[in] values a contiguous array of bytes (non-zero is 1)
   /// \param[in] length the number of values to append
   /// \param[in] valid_bytes an optional sequence of bytes where non-zero
-  /// indicates a valid (non-null) value)
+  /// indicates a valid (non-null) value
   /// \return Status
   Status Append(const uint8_t* values, int64_t length,
                 const uint8_t* valid_bytes = nullptr);