aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/text/width/width.go
diff options
context:
space:
mode:
authorale <ale@incal.net>2021-06-19 16:43:43 +0100
committerale <ale@incal.net>2021-06-19 16:43:43 +0100
commit833da3f33a5c727a8d7ccd034c43497c66793026 (patch)
tree2963588cf4fc88f77a39f2a4ab535a5bb44756a9 /vendor/golang.org/x/text/width/width.go
parenta3019b1703b29e74cfb8fd71b9f79b0c1da11395 (diff)
downloadcrawl-833da3f33a5c727a8d7ccd034c43497c66793026.tar.gz
crawl-833da3f33a5c727a8d7ccd034c43497c66793026.zip
go mod vendor
Diffstat (limited to 'vendor/golang.org/x/text/width/width.go')
-rw-r--r--vendor/golang.org/x/text/width/width.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/golang.org/x/text/width/width.go b/vendor/golang.org/x/text/width/width.go
index 29c7509..f1639ca 100644
--- a/vendor/golang.org/x/text/width/width.go
+++ b/vendor/golang.org/x/text/width/width.go
@@ -12,7 +12,7 @@
// are kept together in words or runs that are rotated sideways in vertical text
// layout.
//
-// For more information, see https://unicode.org/reports/tr11/.
+// For more information, see http://unicode.org/reports/tr11/.
package width // import "golang.org/x/text/width"
import (
@@ -27,7 +27,7 @@ import (
// (approximation, fixed pitch only).
// 3) Implement display length.
-// Kind indicates the type of width property as defined in https://unicode.org/reports/tr11/.
+// Kind indicates the type of width property as defined in http://unicode.org/reports/tr11/.
type Kind int
const (
@@ -106,7 +106,7 @@ func (e elem) kind() Kind {
}
// Kind returns the Kind of a rune as defined in Unicode TR #11.
-// See https://unicode.org/reports/tr11/ for more details.
+// See http://unicode.org/reports/tr11/ for more details.
func (p Properties) Kind() Kind {
return p.elem.kind()
}