diff --git a/shared/util/codeql/util/Either.qll b/shared/util/codeql/util/Either.qll index ef332812c79..c3d791a5060 100644 --- a/shared/util/codeql/util/Either.qll +++ b/shared/util/codeql/util/Either.qll @@ -32,9 +32,9 @@ module Either { Right asRight() { this = TRight(result) } } - /** Makes an `Either` from an instanceof of `Left` */ + /** Makes an `Either` from an instance of `Left` */ Left left(Left c) { result = c } - /** Makes an `Either` from an instanceof of `Right` */ + /** Makes an `Either` from an instance of `Right` */ Right right(Right c) { result = c } }