Skip to content

Commit ecd40e5

Browse files
authored
Merge pull request github#5808 from intrigus-lgtm/fix-lambda-typos
Fix typo.
2 parents ad9ea40 + 08731fc commit ecd40e5

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
3131
* currently excludes read-steps, store-steps, and flow-through.
3232
*
3333
* The analysis uses non-linear recursion: When computing a flow path in or out
34-
* of a call, we use the results of the analysis recursively to resolve lamba
34+
* of a call, we use the results of the analysis recursively to resolve lambda
3535
* calls. For this reason, we cannot reuse the code from `DataFlowImpl.qll` directly.
3636
*/
3737
private module LambdaFlow {

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowPrivate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,5 +321,5 @@ predicate lambdaCreation(Node creation, LambdaCallKind kind, DataFlowCallable c)
321321
/** Holds if `call` is a lambda call of kind `kind` where `receiver` is the lambda expression. */
322322
predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) { none() }
323323

324-
/** Extra data-flow steps needed for lamba flow analysis. */
324+
/** Extra data-flow steps needed for lambda flow analysis. */
325325
predicate additionalLambdaFlowStep(Node nodeFrom, Node nodeTo, boolean preservesValue) { none() }

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
3131
* currently excludes read-steps, store-steps, and flow-through.
3232
*
3333
* The analysis uses non-linear recursion: When computing a flow path in or out
34-
* of a call, we use the results of the analysis recursively to resolve lamba
34+
* of a call, we use the results of the analysis recursively to resolve lambda
3535
* calls. For this reason, we cannot reuse the code from `DataFlowImpl.qll` directly.
3636
*/
3737
private module LambdaFlow {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,5 +557,5 @@ predicate lambdaCreation(Node creation, LambdaCallKind kind, DataFlowCallable c)
557557
/** Holds if `call` is a lambda call of kind `kind` where `receiver` is the lambda expression. */
558558
predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) { none() }
559559

560-
/** Extra data-flow steps needed for lamba flow analysis. */
560+
/** Extra data-flow steps needed for lambda flow analysis. */
561561
predicate additionalLambdaFlowStep(Node nodeFrom, Node nodeTo, boolean preservesValue) { none() }

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
3131
* currently excludes read-steps, store-steps, and flow-through.
3232
*
3333
* The analysis uses non-linear recursion: When computing a flow path in or out
34-
* of a call, we use the results of the analysis recursively to resolve lamba
34+
* of a call, we use the results of the analysis recursively to resolve lambda
3535
* calls. For this reason, we cannot reuse the code from `DataFlowImpl.qll` directly.
3636
*/
3737
private module LambdaFlow {

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1999,7 +1999,7 @@ predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) {
19991999
kind = TMkUnit()
20002000
}
20012001

2002-
/** Extra data-flow steps needed for lamba flow analysis. */
2002+
/** Extra data-flow steps needed for lambda flow analysis. */
20032003
predicate additionalLambdaFlowStep(Node nodeFrom, Node nodeTo, boolean preservesValue) {
20042004
exists(Ssa::Definition def |
20052005
LocalFlow::localSsaFlowStep(def, nodeFrom, nodeTo) and

java/ql/src/semmle/code/java/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
3131
* currently excludes read-steps, store-steps, and flow-through.
3232
*
3333
* The analysis uses non-linear recursion: When computing a flow path in or out
34-
* of a call, we use the results of the analysis recursively to resolve lamba
34+
* of a call, we use the results of the analysis recursively to resolve lambda
3535
* calls. For this reason, we cannot reuse the code from `DataFlowImpl.qll` directly.
3636
*/
3737
private module LambdaFlow {

java/ql/src/semmle/code/java/dataflow/internal/DataFlowPrivate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,5 +325,5 @@ predicate lambdaCreation(Node creation, LambdaCallKind kind, DataFlowCallable c)
325325
/** Holds if `call` is a lambda call of kind `kind` where `receiver` is the lambda expression. */
326326
predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) { none() }
327327

328-
/** Extra data-flow steps needed for lamba flow analysis. */
328+
/** Extra data-flow steps needed for lambda flow analysis. */
329329
predicate additionalLambdaFlowStep(Node nodeFrom, Node nodeTo, boolean preservesValue) { none() }

python/ql/src/semmle/python/dataflow/new/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ predicate accessPathCostLimits(int apLimit, int tupleLimit) {
3131
* currently excludes read-steps, store-steps, and flow-through.
3232
*
3333
* The analysis uses non-linear recursion: When computing a flow path in or out
34-
* of a call, we use the results of the analysis recursively to resolve lamba
34+
* of a call, we use the results of the analysis recursively to resolve lambda
3535
* calls. For this reason, we cannot reuse the code from `DataFlowImpl.qll` directly.
3636
*/
3737
private module LambdaFlow {

python/ql/src/semmle/python/dataflow/new/internal/DataFlowPrivate.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1617,5 +1617,5 @@ predicate lambdaCreation(Node creation, LambdaCallKind kind, DataFlowCallable c)
16171617
/** Holds if `call` is a lambda call of kind `kind` where `receiver` is the lambda expression. */
16181618
predicate lambdaCall(DataFlowCall call, LambdaCallKind kind, Node receiver) { none() }
16191619

1620-
/** Extra data-flow steps needed for lamba flow analysis. */
1620+
/** Extra data-flow steps needed for lambda flow analysis. */
16211621
predicate additionalLambdaFlowStep(Node nodeFrom, Node nodeTo, boolean preservesValue) { none() }

0 commit comments

Comments
 (0)