Skip to content

Commit e118639

Browse files
committed
Post-merge fix
1 parent 4f1f920 commit e118639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tokenizers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2269,7 +2269,7 @@ class MetaspacePreTokenizer extends PreTokenizer {
22692269
// and (2) either:
22702270
// (a) prepend_scheme is 'always'
22712271
// (b) prepend_scheme is 'first' and this is the first section
2272-
(this.prepend_scheme === 'always' || (this.prepend_scheme === 'first' && section_index === 0))
2272+
&& (this.prepend_scheme === 'always' || (this.prepend_scheme === 'first' && section_index === 0))
22732273
) {
22742274
normalized = this.strRep + normalized;
22752275
}

0 commit comments

Comments
 (0)