Change two ``codeql to ``ql

This commit is contained in:
Tom Hvitved
2022-09-14 13:53:34 +02:00
parent 74eb6b2b98
commit 4ea1c0050b
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ private module Peewee {
.getASubclass*()
or
// Ohter known subclasses, semi auto generated by using
// ```codeql
// ```ql
// class DBClass extends Class, SelfRefMixin {
// DBClass() {
// exists(this.getLocation().getFile().getRelativePath()) and

View File

@@ -33,7 +33,7 @@ module API {
* 3. Map the resulting API graph nodes to data-flow nodes, using `asSource` or `asSink`.
*
* For example, a simplified way to get arguments to `Foo.bar` would be
* ```codeql
* ```ql
* API::getTopLevelMember("Foo").getMethod("bar").getParameter(0).asSink()
* ```
*