summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/text
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-04 10:16:06 +0100
committerLibravatar GitHub <noreply@github.com>2023-09-04 10:16:06 +0100
commitddd3c2e44b7a2ac011d81ca1888bdc61d25b010d (patch)
tree41eda7cbeecf3afd931358f9a09f05c9237afba0 /vendor/golang.org/x/text
parent[bugfix] move SQLite pragmas into connection string (#2171) (diff)
downloadgotosocial-ddd3c2e44b7a2ac011d81ca1888bdc61d25b010d.tar.xz
[chore]: Bump golang.org/x/text from 0.12.0 to 0.13.0 (#2177)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/golang.org/x/text')
-rw-r--r--vendor/golang.org/x/text/unicode/norm/trie.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/golang.org/x/text/unicode/norm/trie.go b/vendor/golang.org/x/text/unicode/norm/trie.go
index 423386bf4..e4250ae22 100644
--- a/vendor/golang.org/x/text/unicode/norm/trie.go
+++ b/vendor/golang.org/x/text/unicode/norm/trie.go
@@ -29,7 +29,7 @@ var (
nfkcData = newNfkcTrie(0)
)
-// lookupValue determines the type of block n and looks up the value for b.
+// lookup determines the type of block n and looks up the value for b.
// For n < t.cutoff, the block is a simple lookup table. Otherwise, the block
// is a list of ranges with an accompanying value. Given a matching range r,
// the value for b is by r.value + (b - r.lo) * stride.