Skip to content

Commit f15619c

Browse files
devversionkara
authored andcommitted
chore(platform): fix typos in comments (#4415)
1 parent 1caa63e commit f15619c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/core/platform/platform.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ export class Platform {
1919
EDGE = /(edge)/i.test(navigator.userAgent);
2020
TRIDENT = /(msie|trident)/i.test(navigator.userAgent);
2121

22-
// EdgeHTML and Trident mock Blink specific things and need to excluded from this check.
22+
// EdgeHTML and Trident mock Blink specific things and need to be excluded from this check.
2323
BLINK = !!(window.chrome || hasV8BreakIterator) && !!CSS && !this.EDGE && !this.TRIDENT;
2424

25-
// Webkit is part of the userAgent in EdgeHTML Blink and Trident, so we need to
26-
// ensure that Webkit runs standalone and is not use as another engines base.
25+
// Webkit is part of the userAgent in EdgeHTML, Blink and Trident. Therefore we need to
26+
// ensure that Webkit runs standalone and is not used as another engine's base.
2727
WEBKIT = /AppleWebKit/i.test(navigator.userAgent) && !this.BLINK && !this.EDGE && !this.TRIDENT;
2828

2929
/** Browsers and Platform Types */

0 commit comments

Comments
 (0)