Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Use () instead of {}
Browse files Browse the repository at this point in the history
  • Loading branch information
hohav committed Jul 15, 2022
1 parent eb2ff39 commit 20f20f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/fixed_size_list/mutable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl<M: MutableArray> MutableFixedSizeListArray<M> {
pub fn new_from(values: M, data_type: DataType, size: usize) -> Self {
assert_eq!(values.len(), 0);
match data_type {
DataType::FixedSizeList(..) => {},
DataType::FixedSizeList(..) => (),
_ => panic!("data type must be FixedSizeList (got {:?})", data_type),
};
Self {
Expand Down

0 comments on commit 20f20f9

Please sign in to comment.