Skip to content

Commit

Permalink
fix: Old placeholder usage in Scaladoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Iltotore committed Oct 22, 2021
1 parent c481bb2 commit f165fae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main/src/io/github/iltotore/iron/constraint/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ package object constraint {
trait AlgebraPart[T, V]

/**
* Represent an entry point of the algebraic expression. Example: `??? < 1d` is an entry point.
* Represent an entry point of the algebraic expression. Example: `?? < 1d` is an entry point.
* @tparam T the algebra type to avoid clashes
*/
trait AlgebraEntryPoint[T]
Expand All @@ -42,8 +42,8 @@ package object constraint {
* @tparam B the right input to the right of the operator
* @tparam Alg the algebra type of this operator
* @tparam Literal the type of the possible literals for this operator
* @tparam Left the constraint type of this operator for the pattern `??? < B` or `A < B`
* @tparam Right the constraint type of this operator for the pattern `A > ???`
* @tparam Left the constraint type of this operator for the pattern `?? < B` or `A < B`
* @tparam Right the constraint type of this operator for the pattern `A > ??`
*/
type BiOperator[A, B, Alg, Literal, Left[_], Right[_]] = A match {
case ?? => Left[B]
Expand Down

0 comments on commit f165fae

Please sign in to comment.