aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/cpp/concepts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query/highlights/cpp/concepts.cpp')
-rw-r--r--tests/query/highlights/cpp/concepts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/query/highlights/cpp/concepts.cpp b/tests/query/highlights/cpp/concepts.cpp
index 07e2313ea..27aed7a70 100644
--- a/tests/query/highlights/cpp/concepts.cpp
+++ b/tests/query/highlights/cpp/concepts.cpp
@@ -2,7 +2,7 @@
template <class T, class U>
concept Derived = std::is_base_of<U, T>::value;
// ^ keyword
-// ^ type
+// ^ type.definition
template<typename T>
concept Hashable = requires(T a) {