Skip to content

Commit

Permalink
refactor: fix typos in comments (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
villfa committed Jun 8, 2023
1 parent 9b5ade2 commit bd77986
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions postcss-selector-parser.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -500,18 +500,18 @@ declare namespace parser {
}
function pseudo(opts: ContainerOptions): Pseudo;
/**
* Checks wether the node is the Psuedo subtype of node.
* Checks whether the node is the Pseudo subtype of node.
*/
function isPseudo(node: any): node is Pseudo;

/**
* Checks wether the node is, specifically, a pseudo element instead of
* Checks whether the node is, specifically, a pseudo element instead of
* pseudo class.
*/
function isPseudoElement(node: any): node is Pseudo;

/**
* Checks wether the node is, specifically, a pseudo class instead of
* Checks whether the node is, specifically, a pseudo class instead of
* pseudo element.
*/
function isPseudoClass(node: any): node is Pseudo;
Expand Down

0 comments on commit bd77986

Please sign in to comment.