Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Telatynski <[email protected]>
  • Loading branch information
dbkr and t3chguy authored Jul 17, 2024
1 parent 0273909 commit a32aca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vector/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function checkBrowserFeatures(): boolean {
() => window.RegExp?.prototype && "unicodeSets" in window.RegExp.prototype,
);
// ES2024: https://402.ecma-international.org/9.0/#sec-intl.segmenter
// The built-in modernizer 'intl' check only checks for te presence of the Intl object, not the Segmenter,
// The built-in modernizer 'intl' check only checks for the presence of the Intl object, not the Segmenter,
// and older Firefox has the former but not the latter, so we add our own.
window.Modernizr.addTest("intlsegmenter", () => typeof window.Intl?.Segmenter === "function");

Expand Down

0 comments on commit a32aca4

Please sign in to comment.