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 {
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 */
407407class VariableNode extends Node , TVariableNode {
408408 Variable v ;
Original file line number Diff line number Diff line change 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 */
Original file line number Diff line number Diff line change 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 */
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
55import cpp
Original file line number Diff line number Diff line change 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
55import cpp
You can’t perform that action at this time.
0 commit comments