chore: upgrade dependencies

This commit is contained in:
2022-06-09 16:18:24 +02:00
parent fa2a3ce53b
commit ed0f844e40
74 changed files with 1707 additions and 408 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) {