fix typos

This commit is contained in:
erik-krogh
2022-12-01 15:32:14 +01:00
parent 50a91b5017
commit 236e6db996

View File

@@ -32,9 +32,9 @@ module Either<TypeWithToString Left, TypeWithToString Right> {
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 }
}