Skip to content

Commit 8c36539

Browse files
committed
hum
1 parent cd9d38a commit 8c36539

File tree

1 file changed

+2
-2
lines changed
  • tokenizers/src/tokenizer

1 file changed

+2
-2
lines changed

tokenizers/src/tokenizer/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -864,13 +864,13 @@ where
864864
token,
865865
string
866866
.get_splits(OffsetReferential::Normalized, OffsetType::Byte)
867-
.get(0)
867+
.first()
868868
.unwrap()
869869
);
870870
Some(
871871
string
872872
.get_splits(OffsetReferential::Normalized, OffsetType::Byte)
873-
.get(0)
873+
.first()
874874
.unwrap()
875875
.0
876876
.to_string(),

0 commit comments

Comments
 (0)