forked from mirror/jwt
fix: fixed typo detect by cSpell (#164)
This commit is contained in:
parent
2387103809
commit
863d23d08a
|
@ -1,6 +1,6 @@
|
||||||
package jwt
|
package jwt
|
||||||
|
|
||||||
// ParserOption is used to implement functional-style options that modify the behaviour of the parser. To add
|
// ParserOption is used to implement functional-style options that modify the behavior of the parser. To add
|
||||||
// new options, just create a function (ideally beginning with With or Without) that returns an anonymous function that
|
// new options, just create a function (ideally beginning with With or Without) that returns an anonymous function that
|
||||||
// takes a *Parser type as input and manipulates its configuration accordingly.
|
// takes a *Parser type as input and manipulates its configuration accordingly.
|
||||||
type ParserOption func(*Parser)
|
type ParserOption func(*Parser)
|
||||||
|
@ -13,7 +13,7 @@ func WithValidMethods(methods []string) ParserOption {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithJSONNumber is an option to configure the underyling JSON parser with UseNumber
|
// WithJSONNumber is an option to configure the underlying JSON parser with UseNumber
|
||||||
func WithJSONNumber() ParserOption {
|
func WithJSONNumber() ParserOption {
|
||||||
return func(p *Parser) {
|
return func(p *Parser) {
|
||||||
p.UseJSONNumber = true
|
p.UseJSONNumber = true
|
||||||
|
|
Loading…
Reference in New Issue