"utf8s" -> "utf8"

master
Charles Iliya Krempeaux 2022-07-18 16:30:32 -07:00
parent 51a234fe0b
commit e35f8ab59d
3 changed files with 5 additions and 9 deletions

View File

@ -1,13 +1,13 @@
# go-utf8s
# go-utf8
Package **utf8s** provides tools for working with Unicode encoded as UTF-8, for the Go programming language.
## Documention
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-utf8s
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-utf8
[![GoDoc](https://godoc.org/github.com/reiver/go-utf8s?status.svg)](https://godoc.org/github.com/reiver/go-utf8s)
[![GoDoc](https://godoc.org/github.com/reiver/go-utf8?status.svg)](https://godoc.org/github.com/reiver/go-utf8)
## Example

View File

@ -1,9 +1,5 @@
package utf8s
import (
"unicode/utf8"
)
const (
RuneError = utf8.RuneError
RuneError = '\uFFFD' // Unicode Replacement Character (U+FFFD).
)

View File

@ -1,7 +1,7 @@
package utf8s_test
import (
"github.com/reiver/go-utf8s"
"github.com/reiver/go-utf8"
"strings"