C#/Java: Some minor variable name changes and QL Doc updates.

This commit is contained in:
Michael Nebel
2022-03-24 14:59:50 +01:00
parent 4298024cd6
commit 1710b66003
4 changed files with 10 additions and 10 deletions

View File

@@ -7,6 +7,6 @@
private import internal.ModelGeneratorUtils
private import internal.CaptureModels
from TargetApi api, string sink
where sink = captureSource(api)
select sink order by sink
from TargetApi api, string source
where source = captureSource(api)
select source order by source

View File

@@ -136,7 +136,7 @@ private string parameterAccess(Parameter p) {
}
/**
* Gets the model string representation of the parameter node `p`.
* Gets the CSV string representation of the parameter node `p`.
*/
string parameterNodeAsInput(DataFlow::ParameterNode p) {
result = parameterAccess(p.asParameter())
@@ -145,7 +145,7 @@ string parameterNodeAsInput(DataFlow::ParameterNode p) {
}
/**
* Gets the model string represention of the the return node `node`.
* Gets the CSV string represention of the the return node `node`.
*/
string returnNodeAsOutput(ReturnNodeExt node) {
if node.getKind() instanceof ValueReturnKind