Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cddude229 committed May 2, 2024
1 parent 9e52993 commit 46938c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ func IsPunctuation(c byte) bool {
return false
}

// IsSpace returns true if c is a white-space charactr
// IsSpace returns true if c is a white-space character
func IsSpace(c byte) bool {
return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f' || c == '\v'
}
Expand Down

0 comments on commit 46938c9

Please sign in to comment.