This commit is contained in:
erik-krogh 2022-12-01 15:32:14 +01:00
Родитель 50a91b5017
Коммит 236e6db996
Не найден ключ, соответствующий данной подписи
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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 }
}