Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 20fceb1

Browse files
fix: fix typo "blfoat16" -> "bfloat16" in datatypes.rs (#4852)
Fix typo "blfoat16" -> "bfloat16" in datatypes.rs
1 parent 00703be commit 20fceb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/lance-core/src/datatypes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ impl TryFrom<&DataType> for LogicalType {
155155
},
156156
DataType::FixedSizeList(field, len) => {
157157
if is_bfloat16_field(field) {
158-
// Don't want to directly use `blfoat16`, in case a built-in type is added
158+
// Don't want to directly use `bfloat16`, in case a built-in type is added
159159
// that isn't identical to our extension type.
160160
format!("fixed_size_list:lance.bfloat16:{}", *len)
161161
} else {

0 commit comments

Comments
 (0)