aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/query/highlights/gleam/type.gleam6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/query/highlights/gleam/type.gleam b/tests/query/highlights/gleam/type.gleam
index de0f9c4af..5b0aa021f 100644
--- a/tests/query/highlights/gleam/type.gleam
+++ b/tests/query/highlights/gleam/type.gleam
@@ -1,6 +1,6 @@
pub type Cat {
// <- @keyword.modifier
-// ^^^^ @keyword
+// ^^^^ @keyword.type
// ^^^ @type
// ^ @punctuation.bracket
Cat(name: String, cuteness: Int)
@@ -38,7 +38,7 @@ fn cats() {
}
type Box(inner_type) {
-// <- @keyword
+// <- @keyword.type
// ^^^ @type
// ^ @punctuation.bracket
// ^^^^^^^^^^ @type
@@ -56,7 +56,7 @@ type Box(inner_type) {
pub opaque type Counter {
// <- @keyword.modifier
// ^^^^^^ @keyword.modifier
-// ^^^^ @keyword
+// ^^^^ @keyword.type
// ^^^^^^^ @type
// ^ @punctuation.bracket
Counter(value: Int)