File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
cpp/ql/src/semmle/code/cpp Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import FunctionInputsAndOutputs
1111import semmle.code.cpp.models.Models
1212
1313/**
14- * A library function which returns data that may be read from a network connection.
14+ * A library function that returns data that may be read from a network connection.
1515 */
1616abstract class RemoteFlowFunction extends Function {
1717 /**
@@ -21,11 +21,11 @@ abstract class RemoteFlowFunction extends Function {
2121}
2222
2323/**
24- * A library function which returns data that is directly controlled by a user.
24+ * A library function that returns data that is directly controlled by a user.
2525 */
2626abstract class LocalFlowFunction extends Function {
2727 /**
2828 * Holds if data described by `description` flows from `output` of a call to this function.
2929 */
3030 abstract predicate hasLocalFlowSource ( FunctionOutput output , string description ) ;
31- }
31+ }
Original file line number Diff line number Diff line change @@ -96,5 +96,5 @@ private class ArgvSource extends LocalFlowSource {
9696 )
9797 }
9898
99- override string getSourceType ( ) { result = "a command line argument" }
99+ override string getSourceType ( ) { result = "a command- line argument" }
100100}
You can’t perform that action at this time.
0 commit comments