Skip to content

Commit f0215d1

Browse files
author
Dave Bartolomeo
committed
C++: Fix typo
1 parent 566d7fa commit f0215d1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cpp/ql/src/semmle/code/cpp/ir/implementation/aliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class IRBlockBase extends TIRBlock {
7171
}
7272

7373
/**
74-
* Gets an instructions in this block. This includes `Phi` instructions.
74+
* Gets an instruction in this block. This includes `Phi` instructions.
7575
*/
7676
final Instruction getAnInstruction() {
7777
result = getInstruction(_) or

cpp/ql/src/semmle/code/cpp/ir/implementation/raw/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class IRBlockBase extends TIRBlock {
7171
}
7272

7373
/**
74-
* Gets an instructions in this block. This includes `Phi` instructions.
74+
* Gets an instruction in this block. This includes `Phi` instructions.
7575
*/
7676
final Instruction getAnInstruction() {
7777
result = getInstruction(_) or

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class IRBlockBase extends TIRBlock {
7171
}
7272

7373
/**
74-
* Gets an instructions in this block. This includes `Phi` instructions.
74+
* Gets an instruction in this block. This includes `Phi` instructions.
7575
*/
7676
final Instruction getAnInstruction() {
7777
result = getInstruction(_) or

csharp/ql/src/experimental/ir/implementation/raw/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class IRBlockBase extends TIRBlock {
7171
}
7272

7373
/**
74-
* Gets an instructions in this block. This includes `Phi` instructions.
74+
* Gets an instruction in this block. This includes `Phi` instructions.
7575
*/
7676
final Instruction getAnInstruction() {
7777
result = getInstruction(_) or

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/IRBlock.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class IRBlockBase extends TIRBlock {
7171
}
7272

7373
/**
74-
* Gets an instructions in this block. This includes `Phi` instructions.
74+
* Gets an instruction in this block. This includes `Phi` instructions.
7575
*/
7676
final Instruction getAnInstruction() {
7777
result = getInstruction(_) or

0 commit comments

Comments
 (0)