vendor/golang.org/x/text/unicode/norm/forminfo.go
changeset 265 05c40b36d3b2
parent 251 1c52a0eeb952
--- a/vendor/golang.org/x/text/unicode/norm/forminfo.go	Thu Sep 22 16:37:07 2022 +0200
+++ b/vendor/golang.org/x/text/unicode/norm/forminfo.go	Sat Feb 04 12:58:35 2023 +0100
@@ -110,10 +110,11 @@
 }
 
 // We pack quick check data in 4 bits:
-//   5:    Combines forward  (0 == false, 1 == true)
-//   4..3: NFC_QC Yes(00), No (10), or Maybe (11)
-//   2:    NFD_QC Yes (0) or No (1). No also means there is a decomposition.
-//   1..0: Number of trailing non-starters.
+//
+//	5:    Combines forward  (0 == false, 1 == true)
+//	4..3: NFC_QC Yes(00), No (10), or Maybe (11)
+//	2:    NFD_QC Yes (0) or No (1). No also means there is a decomposition.
+//	1..0: Number of trailing non-starters.
 //
 // When all 4 bits are zero, the character is inert, meaning it is never
 // influenced by normalization.