Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a91b5 commit 236e6dbCopy full SHA for 236e6db
1 file changed
shared/util/codeql/util/Either.qll
@@ -32,9 +32,9 @@ module Either<TypeWithToString Left, TypeWithToString Right> {
32
Right asRight() { this = TRight(result) }
33
}
34
35
- /** Makes an `Either` from an instanceof of `Left` */
+ /** Makes an `Either` from an instance of `Left` */
36
Left left(Left c) { result = c }
37
38
- /** Makes an `Either` from an instanceof of `Right` */
+ /** Makes an `Either` from an instance of `Right` */
39
Right right(Right c) { result = c }
40
0 commit comments