Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ export class CSSHelp {
return Array.from(styleSheet?.cssRules || []);
}

// Takes a CSS selector, returns all equivelant selectors from the current document
// Takes a CSS selector, returns all equivalent selectors from the current document
// or an empty array if there are no matches
selectorsFromSelector(selector: string): string[] {
const elements = this.doc.querySelectorAll(selector);
Expand Down
Loading