We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f1f920 commit e118639Copy full SHA for e118639
src/tokenizers.js
@@ -2269,7 +2269,7 @@ class MetaspacePreTokenizer extends PreTokenizer {
2269
// and (2) either:
2270
// (a) prepend_scheme is 'always'
2271
// (b) prepend_scheme is 'first' and this is the first section
2272
- (this.prepend_scheme === 'always' || (this.prepend_scheme === 'first' && section_index === 0))
+ && (this.prepend_scheme === 'always' || (this.prepend_scheme === 'first' && section_index === 0))
2273
) {
2274
normalized = this.strRep + normalized;
2275
}
0 commit comments