Skip to content

Commit f5eb131

Browse files
committed
C#: Address review comments
1 parent 63f76b1 commit f5eb131

File tree

1 file changed

+2
-2
lines changed
  • csharp/ql/src/semmle/code/csharp/dataflow

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module Ssa {
1919
}
2020

2121
/**
22-
* Holds if the this field or any of the fields part of the qualifier
22+
* Holds if this field or any of the fields part of the qualifier
2323
* are volatile.
2424
*/
2525
predicate isVolatile() { this.(Field).isVolatile() }
@@ -605,7 +605,7 @@ module Ssa {
605605

606606
/**
607607
* Holds if the `i`th node of basic block `bb` is a reference to `v`,
608-
* either a read (when `k` is `Read()`) or an SSA definition (when `k`
608+
* either a read (when `k` is `SsaRead()`) or an SSA definition (when `k`
609609
* is `SsaDef()`).
610610
*/
611611
private predicate ssaRef(BasicBlock bb, int i, SourceVariable v, SsaRefKind k) {

0 commit comments

Comments
 (0)