Update cpp/ql/lib/semmle/code/cpp/TemplateParameter.qll

Co-authored-by: Calum Grant <42069085+calumgrant@users.noreply.github.com>
This commit is contained in:
Jeroen Ketema
2025-01-06 13:30:43 +01:00
committed by GitHub
parent 8e660190a9
commit 0942945fa1

View File

@@ -79,7 +79,7 @@ class TemplateTemplateParameter extends TypeTemplateParameter {
/**
* Gets a class instantiated from this template template parameter.
*
* For example for `Container<T>` in the following code, the results is
* For example for `Container<T>` in the following code, the result is
* `Container<Elem>`:
* ```
* template <template <typename T> class Container, class Elem>