Skip to content

Commit 863d23d

Browse files
authored
fix: fixed typo detect by cSpell (#164)
1 parent 2387103 commit 863d23d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parser_option.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package jwt
22

3-
// ParserOption is used to implement functional-style options that modify the behaviour of the parser. To add
3+
// ParserOption is used to implement functional-style options that modify the behavior of the parser. To add
44
// new options, just create a function (ideally beginning with With or Without) that returns an anonymous function that
55
// takes a *Parser type as input and manipulates its configuration accordingly.
66
type ParserOption func(*Parser)
@@ -13,7 +13,7 @@ func WithValidMethods(methods []string) ParserOption {
1313
}
1414
}
1515

16-
// WithJSONNumber is an option to configure the underyling JSON parser with UseNumber
16+
// WithJSONNumber is an option to configure the underlying JSON parser with UseNumber
1717
func WithJSONNumber() ParserOption {
1818
return func(p *Parser) {
1919
p.UseJSONNumber = true

0 commit comments

Comments
 (0)