Skip to content

Commit 30d5545

Browse files
committed
C#/Java: Fix some QL doc spelling typos.
1 parent 592b60d commit 30d5545

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/ExternalFlow.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ predicate summaryModel(
247247
)
248248
}
249249

250-
/** Holds is a summary model exists indicating there is no flow for the given parameters. */
250+
/** Holds if a summary model exists indicating there is no flow for the given parameters. */
251251
predicate negativeSummaryModel(
252252
string namespace, string type, string name, string signature, string provenance
253253
) {

csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ module Ssa {
173173
}
174174

175175
/**
176-
* Holds is this SSA definition is live at the end of basic block `bb`.
176+
* Holds if this SSA definition is live at the end of basic block `bb`.
177177
* That is, this definition reaches the end of basic block `bb`, at which
178178
* point it is still live, without crossing another SSA definition of the
179179
* same source variable.

java/ql/lib/semmle/code/java/dataflow/ExternalFlow.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ predicate summaryModel(
507507
row.splitAt(";", 9) = provenance
508508
}
509509

510-
/** Holds is a summary model exists indicating there is no flow for the given parameters. */
510+
/** Holds if a summary model exists indicating there is no flow for the given parameters. */
511511
predicate negativeSummaryModel(
512512
string namespace, string type, string name, string signature, string provenance
513513
) {

ruby/ql/lib/codeql/ruby/ast/Variable.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class GlobalVariable extends Variable instanceof GlobalVariableImpl {
6363

6464
/** An instance variable. */
6565
class InstanceVariable extends Variable instanceof InstanceVariableImpl {
66-
/** Holds is this variable is a class instance variable. */
66+
/** Holds if this variable is a class instance variable. */
6767
final predicate isClassInstanceVariable() { super.isClassInstanceVariable() }
6868

6969
final override InstanceVariableAccess getAnAccess() { result.getVariable() = this }

0 commit comments

Comments
 (0)