"utf8s" -> "utf8"
parent
51a234fe0b
commit
e35f8ab59d
|
@ -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.
|
Package **utf8s** provides tools for working with Unicode encoded as UTF-8, for the Go programming language.
|
||||||
|
|
||||||
|
|
||||||
## Documention
|
## 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
|
## Example
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
package utf8s
|
package utf8s
|
||||||
|
|
||||||
import (
|
|
||||||
"unicode/utf8"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
const (
|
||||||
RuneError = utf8.RuneError
|
RuneError = '\uFFFD' // Unicode Replacement Character (U+FFFD).
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package utf8s_test
|
package utf8s_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/reiver/go-utf8s"
|
"github.com/reiver/go-utf8"
|
||||||
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue