update deps

This commit is contained in:
Umputun
2019-10-27 13:57:10 -05:00
parent 6ad2263859
commit eb67ba85d1
575 changed files with 71679 additions and 21828 deletions
+14
View File
@@ -0,0 +1,14 @@
package stringprep
import "fmt"
// Error describes problems encountered during stringprep, including what rune
// was problematic.
type Error struct {
Msg string
Rune rune
}
func (e Error) Error() string {
return fmt.Sprintf("%s (rune: '\\u%04x')", e.Msg, e.Rune)
}