Skip to content

Commit bd77986

Browse files
authored
refactor: fix typos in comments (#279)
1 parent 9b5ade2 commit bd77986

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

postcss-selector-parser.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,18 +500,18 @@ declare namespace parser {
500500
}
501501
function pseudo(opts: ContainerOptions): Pseudo;
502502
/**
503-
* Checks wether the node is the Psuedo subtype of node.
503+
* Checks whether the node is the Pseudo subtype of node.
504504
*/
505505
function isPseudo(node: any): node is Pseudo;
506506

507507
/**
508-
* Checks wether the node is, specifically, a pseudo element instead of
508+
* Checks whether the node is, specifically, a pseudo element instead of
509509
* pseudo class.
510510
*/
511511
function isPseudoElement(node: any): node is Pseudo;
512512

513513
/**
514-
* Checks wether the node is, specifically, a pseudo class instead of
514+
* Checks whether the node is, specifically, a pseudo class instead of
515515
* pseudo element.
516516
*/
517517
function isPseudoClass(node: any): node is Pseudo;

0 commit comments

Comments
 (0)