Skip to content

Commit 3ce4cff

Browse files
authored
Merge pull request #3802 from geoffw0/modeling
C++: 'modelling' -> 'modeling'.
2 parents f2ef088 + 099e589 commit 3ce4cff

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Node extends TIRDataFlowNode {
5959

6060
/**
6161
* Gets the variable corresponding to this node, if any. This can be used for
62-
* modelling flow in and out of global variables.
62+
* modeling flow in and out of global variables.
6363
*/
6464
Variable asVariable() { result = this.(VariableNode).getVariable() }
6565

@@ -402,7 +402,7 @@ private class ArgumentIndirectionNode extends InstructionNode {
402402
/**
403403
* A `Node` corresponding to a variable in the program, as opposed to the
404404
* value of that variable at some particular point. This can be used for
405-
* modelling flow in and out of global variables.
405+
* modeling flow in and out of global variables.
406406
*/
407407
class VariableNode extends Node, TVariableNode {
408408
Variable v;

cpp/ql/src/semmle/code/cpp/models/implementations/Allocation.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides implementation classes modelling various methods of allocation
2+
* Provides implementation classes modeling various methods of allocation
33
* (`malloc`, `new` etc). See `semmle.code.cpp.models.interfaces.Allocation`
44
* for usage information.
55
*/

cpp/ql/src/semmle/code/cpp/models/implementations/Deallocation.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides implementation classes modelling various methods of deallocation
2+
* Provides implementation classes modeling various methods of deallocation
33
* (`free`, `delete` etc). See `semmle.code.cpp.models.interfaces.Deallocation`
44
* for usage information.
55
*/

cpp/ql/src/semmle/code/cpp/models/implementations/Printf.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides implementation classes modelling various standard formatting
2+
* Provides implementation classes modeling various standard formatting
33
* functions (`printf`, `snprintf` etc).
44
* See `semmle.code.cpp.models.interfaces.FormattingFunction` for usage
55
* information.

cpp/ql/src/semmle/code/cpp/models/implementations/Strcat.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides implementation classes modelling `strcat` and various similar functions.
2+
* Provides implementation classes modeling `strcat` and various similar functions.
33
* See `semmle.code.cpp.models.Models` for usage information.
44
*/
55

cpp/ql/src/semmle/code/cpp/models/interfaces/Allocation.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides an abstract class for modelling functions and expressions that
2+
* Provides an abstract class for modeling functions and expressions that
33
* allocate memory, such as the standard `malloc` function. To use this QL
44
* library, create one or more QL classes extending a class here with a
55
* characteristic predicate that selects the functions or expressions you are

cpp/ql/src/semmle/code/cpp/models/interfaces/Deallocation.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides an abstract class for modelling functions and expressions that
2+
* Provides an abstract class for modeling functions and expressions that
33
* deallocate memory, such as the standard `free` function. To use this QL
44
* library, create one or more QL classes extending a class here with a
55
* characteristic predicate that selects the functions or expressions you are

cpp/ql/src/semmle/code/cpp/security/FileWrite.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for modelling writing of data to files through various standard mechanisms such as `fprintf`, `fwrite` and `operator<<`.
2+
* Provides classes for modeling writing of data to files through various standard mechanisms such as `fprintf`, `fwrite` and `operator<<`.
33
*/
44

55
import cpp

cpp/ql/src/semmle/code/cpp/security/OutputWrite.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for modelling output to standard output / standard error through various mechanisms such as `printf`, `puts` and `operator<<`.
2+
* Provides classes for modeling output to standard output / standard error through various mechanisms such as `printf`, `puts` and `operator<<`.
33
*/
44

55
import cpp

0 commit comments

Comments
 (0)