File tree Expand file tree Collapse file tree 9 files changed +10
-10
lines changed
cpp/ql/src/semmle/code/cpp Expand file tree Collapse file tree 9 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class Node extends TIRDataFlowNode {
59
59
60
60
/**
61
61
* 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.
63
63
*/
64
64
Variable asVariable ( ) { result = this .( VariableNode ) .getVariable ( ) }
65
65
@@ -402,7 +402,7 @@ private class ArgumentIndirectionNode extends InstructionNode {
402
402
/**
403
403
* A `Node` corresponding to a variable in the program, as opposed to the
404
404
* 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.
406
406
*/
407
407
class VariableNode extends Node , TVariableNode {
408
408
Variable v ;
Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides implementation classes modelling various methods of allocation
2
+ * Provides implementation classes modeling various methods of allocation
3
3
* (`malloc`, `new` etc). See `semmle.code.cpp.models.interfaces.Allocation`
4
4
* for usage information.
5
5
*/
Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides implementation classes modelling various methods of deallocation
2
+ * Provides implementation classes modeling various methods of deallocation
3
3
* (`free`, `delete` etc). See `semmle.code.cpp.models.interfaces.Deallocation`
4
4
* for usage information.
5
5
*/
Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides implementation classes modelling various standard formatting
2
+ * Provides implementation classes modeling various standard formatting
3
3
* functions (`printf`, `snprintf` etc).
4
4
* See `semmle.code.cpp.models.interfaces.FormattingFunction` for usage
5
5
* information.
Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides implementation classes modelling `strcat` and various similar functions.
2
+ * Provides implementation classes modeling `strcat` and various similar functions.
3
3
* See `semmle.code.cpp.models.Models` for usage information.
4
4
*/
5
5
Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides an abstract class for modelling functions and expressions that
2
+ * Provides an abstract class for modeling functions and expressions that
3
3
* allocate memory, such as the standard `malloc` function. To use this QL
4
4
* library, create one or more QL classes extending a class here with a
5
5
* characteristic predicate that selects the functions or expressions you are
Original file line number Diff line number Diff line change 1
1
/**
2
- * Provides an abstract class for modelling functions and expressions that
2
+ * Provides an abstract class for modeling functions and expressions that
3
3
* deallocate memory, such as the standard `free` function. To use this QL
4
4
* library, create one or more QL classes extending a class here with a
5
5
* characteristic predicate that selects the functions or expressions you are
Original file line number Diff line number Diff line change 1
1
/**
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<<`.
3
3
*/
4
4
5
5
import cpp
Original file line number Diff line number Diff line change 1
1
/**
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<<`.
3
3
*/
4
4
5
5
import cpp
You can’t perform that action at this time.
0 commit comments