aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/net/idna/trieval.go
diff options
context:
space:
mode:
authorJordan <me@jordan.im>2022-09-30 11:52:44 -0700
committerJordan <me@jordan.im>2022-09-30 11:52:44 -0700
commit0192a4e3f1c90df255e44831a579d9b0f611a543 (patch)
tree52c6bfa35b5491560af253a5e5ba90ed8a729871 /vendor/golang.org/x/net/idna/trieval.go
parent66bfe530b4fd5cb9755337ce718df26ee81f1b77 (diff)
downloadkeep-0192a4e3f1c90df255e44831a579d9b0f611a543.tar.gz
keep-0192a4e3f1c90df255e44831a579d9b0f611a543.zip
go.mod: bump discordgo, go-sqlite3, x/net
Diffstat (limited to 'vendor/golang.org/x/net/idna/trieval.go')
-rw-r--r--vendor/golang.org/x/net/idna/trieval.go34
1 files changed, 17 insertions, 17 deletions
diff --git a/vendor/golang.org/x/net/idna/trieval.go b/vendor/golang.org/x/net/idna/trieval.go
index 7a8cf88..9c070a4 100644
--- a/vendor/golang.org/x/net/idna/trieval.go
+++ b/vendor/golang.org/x/net/idna/trieval.go
@@ -17,23 +17,23 @@ package idna
//
// The per-rune values have the following format:
//
-// if mapped {
-// if inlinedXOR {
-// 15..13 inline XOR marker
-// 12..11 unused
-// 10..3 inline XOR mask
-// } else {
-// 15..3 index into xor or mapping table
-// }
-// } else {
-// 15..14 unused
-// 13 mayNeedNorm
-// 12..11 attributes
-// 10..8 joining type
-// 7..3 category type
-// }
-// 2 use xor pattern
-// 1..0 mapped category
+// if mapped {
+// if inlinedXOR {
+// 15..13 inline XOR marker
+// 12..11 unused
+// 10..3 inline XOR mask
+// } else {
+// 15..3 index into xor or mapping table
+// }
+// } else {
+// 15..14 unused
+// 13 mayNeedNorm
+// 12..11 attributes
+// 10..8 joining type
+// 7..3 category type
+// }
+// 2 use xor pattern
+// 1..0 mapped category
//
// See the definitions below for a more detailed description of the various
// bits.