Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/src/main/paradox/borer-compat-cats.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ types, for which there is no clear default encoding:
- `Ior[A, B]`
- `Validated[A, B]`

The encodings implemented by `borer-compat-circe` aim for best time and space efficiency, not "readability".
The encodings implemented by `borer-compat-cats` aim for best time and space efficiency, not "readability".

One easy way to optimize for self-describability rather than efficiency would be to rely on `borer-derivation` instead.
Here is an example contrasting the difference:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CatsCompatSpec extends BorerSuite {
Ior.Both(42, "bar")
)

// the Ior encoding of `borer-compat-circe` is optimized for efficiency
// the Ior encoding of `borer-compat-cats` is optimized for efficiency
{
import io.bullet.borer.compat.cats.*

Expand Down
Loading