From 67407e9eeea248b5265770d2ea4ce52b5b10b0db Mon Sep 17 00:00:00 2001 From: Brian Phillips Date: Fri, 29 Jul 2022 14:00:58 -0400 Subject: [PATCH] pr comments --- arrow/src/array/builder/decimal_builder.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrow/src/array/builder/decimal_builder.rs b/arrow/src/array/builder/decimal_builder.rs index 0b79850ac6e..98f1088cf9a 100644 --- a/arrow/src/array/builder/decimal_builder.rs +++ b/arrow/src/array/builder/decimal_builder.rs @@ -117,7 +117,7 @@ impl Decimal128Builder { self.builder.append_null() } - /// Appends an `Option` into the builder. + /// Appends an `Option>` into the builder. #[inline] pub fn append_option(&mut self, value: Option>) -> Result<()> { match value { @@ -231,7 +231,7 @@ impl Decimal256Builder { self.builder.append_null() } - /// Appends an `Option` into the builder. + /// Appends an `Option<&Decimal256>` into the builder. #[inline] pub fn append_option(&mut self, value: Option<&Decimal256>) -> Result<()> { match value {