mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
C++: 'modelling' -> 'modeling'.
This commit is contained in:
@@ -59,7 +59,7 @@ class Node extends TIRDataFlowNode {
|
||||
|
||||
/**
|
||||
* Gets the variable corresponding to this node, if any. This can be used for
|
||||
* modelling flow in and out of global variables.
|
||||
* modeling flow in and out of global variables.
|
||||
*/
|
||||
Variable asVariable() { result = this.(VariableNode).getVariable() }
|
||||
|
||||
@@ -402,7 +402,7 @@ private class ArgumentIndirectionNode extends InstructionNode {
|
||||
/**
|
||||
* A `Node` corresponding to a variable in the program, as opposed to the
|
||||
* value of that variable at some particular point. This can be used for
|
||||
* modelling flow in and out of global variables.
|
||||
* modeling flow in and out of global variables.
|
||||
*/
|
||||
class VariableNode extends Node, TVariableNode {
|
||||
Variable v;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling various methods of allocation
|
||||
* Provides implementation classes modeling various methods of allocation
|
||||
* (`malloc`, `new` etc). See `semmle.code.cpp.models.interfaces.Allocation`
|
||||
* for usage information.
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling various methods of deallocation
|
||||
* Provides implementation classes modeling various methods of deallocation
|
||||
* (`free`, `delete` etc). See `semmle.code.cpp.models.interfaces.Deallocation`
|
||||
* for usage information.
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling `gets` and various similar
|
||||
* Provides implementation classes modeling `gets` and various similar
|
||||
* functions. See `semmle.code.cpp.models.Models` for usage information.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling `memcpy` and various similar
|
||||
* Provides implementation classes modeling `memcpy` and various similar
|
||||
* functions. See `semmle.code.cpp.models.Models` for usage information.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling `memset` and various similar
|
||||
* Provides implementation classes modeling `memset` and various similar
|
||||
* functions. See `semmle.code.cpp.models.Models` for usage information.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling various standard formatting
|
||||
* Provides implementation classes modeling various standard formatting
|
||||
* functions (`printf`, `snprintf` etc).
|
||||
* See `semmle.code.cpp.models.interfaces.FormattingFunction` for usage
|
||||
* information.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling `strcat` and various similar functions.
|
||||
* Provides implementation classes modeling `strcat` and various similar functions.
|
||||
* See `semmle.code.cpp.models.Models` for usage information.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling `strcpy` and various similar
|
||||
* Provides implementation classes modeling `strcpy` and various similar
|
||||
* functions. See `semmle.code.cpp.models.Models` for usage information.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides implementation classes modelling `strdup` and various similar
|
||||
* Provides implementation classes modeling `strdup` and various similar
|
||||
* functions. See `semmle.code.cpp.models.Models` for usage information.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides an abstract class for modelling functions and expressions that
|
||||
* Provides an abstract class for modeling functions and expressions that
|
||||
* allocate memory, such as the standard `malloc` function. To use this QL
|
||||
* library, create one or more QL classes extending a class here with a
|
||||
* characteristic predicate that selects the functions or expressions you are
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides an abstract class for modelling functions and expressions that
|
||||
* Provides an abstract class for modeling functions and expressions that
|
||||
* deallocate memory, such as the standard `free` function. To use this QL
|
||||
* library, create one or more QL classes extending a class here with a
|
||||
* characteristic predicate that selects the functions or expressions you are
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides classes for modelling writing of data to files through various standard mechanisms such as `fprintf`, `fwrite` and `operator<<`.
|
||||
* Provides classes for modeling writing of data to files through various standard mechanisms such as `fprintf`, `fwrite` and `operator<<`.
|
||||
*/
|
||||
|
||||
import cpp
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Provides classes for modelling output to standard output / standard error through various mechanisms such as `printf`, `puts` and `operator<<`.
|
||||
* Provides classes for modeling output to standard output / standard error through various mechanisms such as `printf`, `puts` and `operator<<`.
|
||||
*/
|
||||
|
||||
import cpp
|
||||
|
||||
Reference in New Issue
Block a user