mirror of
https://github.com/ericchiang/pup
synced 2024-11-23 08:28:07 +00:00
fix typos
This commit is contained in:
parent
dcfee170e2
commit
56d0c59077
2
parse.go
2
parse.go
@ -146,7 +146,7 @@ func ParseCommands(cmdString string) ([]string, error) {
|
||||
}
|
||||
return cmds, nil
|
||||
}
|
||||
// evalute a rune
|
||||
// evaluate a rune
|
||||
c := cmdString[next]
|
||||
switch c {
|
||||
case ' ':
|
||||
|
@ -495,7 +495,7 @@ func parseNthPseudo(cmd string) (PseudoClass, error) {
|
||||
nthString := cmd[i+1:]
|
||||
i = strings.IndexRune(nthString, ')')
|
||||
if i < 0 {
|
||||
return nil, fmt.Errorf("Unmatched '(' for psuedo class %s", pseudoName)
|
||||
return nil, fmt.Errorf("Unmatched '(' for pseudo class %s", pseudoName)
|
||||
} else if i != len(nthString)-1 {
|
||||
return nil, fmt.Errorf("%s(n) must end selector", pseudoName)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user