Skip to content

Commit

Permalink
pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Phillips committed Jul 29, 2022
1 parent 0067761 commit 67407e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow/src/array/builder/decimal_builder.rs
Expand Up @@ -117,7 +117,7 @@ impl Decimal128Builder {
self.builder.append_null()
}

/// Appends an `Option<T>` into the builder.
/// Appends an `Option<impl Into<i128>>` into the builder.
#[inline]
pub fn append_option(&mut self, value: Option<impl Into<i128>>) -> Result<()> {
match value {
Expand Down Expand Up @@ -231,7 +231,7 @@ impl Decimal256Builder {
self.builder.append_null()
}

/// Appends an `Option<T>` into the builder.
/// Appends an `Option<&Decimal256>` into the builder.
#[inline]
pub fn append_option(&mut self, value: Option<&Decimal256>) -> Result<()> {
match value {
Expand Down

0 comments on commit 67407e9

Please sign in to comment.