You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
This library uses string([]rune(s)) technique to remove invalid Unicode characters
in multiple places. They should be replaced with strings.ToValidUTF8 which will
be added in Go 1.13.
$ git grep '\[\]rune'json.go: t = string([]rune(t))json.go: s = string([]rune(s))logfmt.go: t = string([]rune(t))logfmt.go: s = string([]rune(s))plain.go: t = string([]rune(t))plain.go: s = string([]rune(s))
The text was updated successfully, but these errors were encountered:
golang/go#25805
This library uses
string([]rune(s))
technique to remove invalid Unicode charactersin multiple places. They should be replaced with
strings.ToValidUTF8
which willbe added in Go 1.13.
The text was updated successfully, but these errors were encountered: