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 6fe6af436..09d975c98 100644
--- a/tests/query/highlights/cpp/concepts.cpp
+++ b/tests/query/highlights/cpp/concepts.cpp
@@ -7,7 +7,7 @@ concept Derived = std::is_base_of<U, T>::value;
template<typename T>
concept Hashable = requires(T a) {
// ^ @keyword
-// ^ @parameter
+// ^ @variable.parameter
// ^ @type
{ std::hash<T>{}(a) } -> std::convertible_to<std::size_t>;
typename CommonType<T, U>; // CommonType<T, U> is valid and names a type