chore: upgrade dependencies

This commit is contained in:
2022-06-07 19:48:23 +02:00
parent aa043e2e6c
commit 9c914d28e7
89 changed files with 2095 additions and 596 deletions

View File

@ -381,7 +381,7 @@ func (d *Decoder) currentOpenKind() (Kind, byte) {
case '[':
return ListOpen, ']'
}
panic(fmt.Sprintf("Decoder: openStack contains invalid byte %s", string(openCh)))
panic(fmt.Sprintf("Decoder: openStack contains invalid byte %c", openCh))
}
func (d *Decoder) pushOpenStack(ch byte) {