Skip to content
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ Make sure you know how to get started, [check out our docs](https://classes.read

## Example

Imagine, that you want to bound implementation to some particular type.
Imagine, that you want to bind implementation to some particular type.
Like, strings behave like this, numbers behave like that, and so on.

The good realworld example is `djangorestframework`.
It is build around the idea that different
It is built around the idea that different
data types should be converted differently to and from `json` format.

What is the "traditional" (or outdated if you will!) approach?
Expand Down Expand Up @@ -110,7 +110,7 @@ How would new API look like with this concept?

```

See how easy it is to works with types and implementation?
See how easy it is to work with types and implementation?

Typeclass is represented as a regular function, so you can use it like one:

Expand Down
Loading