C++: 'modelling' -> 'modeling'.

This commit is contained in:
Geoffrey White
2020-06-25 11:50:43 +01:00
parent b24fba8df0
commit 099e5891ae
9 changed files with 10 additions and 10 deletions

View File

@@ -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;

View File

@@ -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.
*/

View File

@@ -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.
*/

View File

@@ -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.

View File

@@ -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.
*/

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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