-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Either
documentation page
#4400
Remove Either
documentation page
#4400
Conversation
docs/faq.md
Outdated
This syntax and the type class instances for `Either` can be imported using `cats.syntax._`, which will also bring in syntactic enrichment and instances for other standard library types, or you can import only the `Either` enrichment with `cats.syntax.either._`. | ||
|
||
There are a few minor mismatches between `Xor` and `Either`. For example, in some cases you may need to specify a type parameter for an enrichment method on `Either` (such as `leftMap`) even though it was properly inferred for `Xor`. See the [`Either` section of this guide](datatypes/either.md#either-in-the-small-either-in-the-large) for more information about these issues. | ||
There are a few minor mismatches between `Xor` and `Either`. For example, in some cases you may need to specify a type parameter for an enrichment method on `Either` (such as `leftMap`) even though it was properly inferred for `Xor`, due `Either` having covariant type parameters. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated this, but is this still an FAQ two major versions later?
Either
documentation page.
cbd8e65
to
a2408ba
Compare
Sorry, one final thought: instead of completely 404ing the page can we put something there to redirect inbound links somewhere more useful? |
I perused the Laika documentation, but I don't see a way to have a page exist without it showing up in the table of contents. Is there something in the Typelevel site setup to allow such a redirect? |
Jens on Discord:
Not sure if that's supported in Laika 0.18.x, if not I might need to get the sbt-typelevel upgrade PR in first. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
Either
documentation page.Either
documentation page
Resolves #4392
StateT
documentation in the right order