Skip to content

Commit 236e6db

Browse files
committed
fix typos
1 parent 50a91b5 commit 236e6db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared/util/codeql/util/Either.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ module Either<TypeWithToString Left, TypeWithToString Right> {
3232
Right asRight() { this = TRight(result) }
3333
}
3434

35-
/** Makes an `Either` from an instanceof of `Left` */
35+
/** Makes an `Either` from an instance of `Left` */
3636
Left left(Left c) { result = c }
3737

38-
/** Makes an `Either` from an instanceof of `Right` */
38+
/** Makes an `Either` from an instance of `Right` */
3939
Right right(Right c) { result = c }
4040
}

0 commit comments

Comments
 (0)