We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8789dfb commit 37b2b0aCopy full SHA for 37b2b0a
1 file changed
docs/codeql/writing-codeql-queries/river-answer-1-path.ql
@@ -6,10 +6,7 @@
6
/** A possible cargo item. */
7
class Cargo extends string {
8
Cargo() {
9
- this = "Nothing" or
10
- this = "Goat" or
11
- this = "Cabbage" or
12
- this = "Wolf"
+ this = ["Nothing", "Goat", "Cabbage", "Wolf"]
13
}
14
15
0 commit comments