We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f738567 commit cb110baCopy full SHA for cb110ba
ql/ql/src/queries/style/ConsistentAlertMessage.ql
@@ -17,7 +17,7 @@ import ql
17
string getMessage(Select sel) {
18
result =
19
strictconcat(String e, Location l |
20
- // is child of an expression in the select (in an uneven position, that's where the message is)
+ // is child of an expression in the select (in an odd-indexed position, that's where the message is)
21
e.getParent*() = sel.getExpr(any(int i | i % 2 = 1)) and l = e.getFullLocation()
22
|
23
e.getValue(), " | " order by l.getStartLine(), l.getStartColumn()
0 commit comments