From 181403d6a106cd5b23e82cbad097f7e630f0e66a Mon Sep 17 00:00:00 2001 From: Maxim Ivanov Date: Fri, 13 Dec 2024 12:40:05 +0700 Subject: [PATCH 1/3] Fix typo in "to work" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a054c4..1ff71e3 100644 --- a/README.md +++ b/README.md @@ -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: From 3fce89d87e2ecc449702f5c4249c47100f144e54 Mon Sep 17 00:00:00 2001 From: Maxim Ivanov Date: Fri, 13 Dec 2024 12:41:38 +0700 Subject: [PATCH 2/3] Fix bound -> infinitive bind --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ff71e3..e1f2291 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ 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`. From ce7c1d90159d8603b121938b47860ae9f05cab19 Mon Sep 17 00:00:00 2001 From: Maxim Ivanov Date: Fri, 13 Dec 2024 12:42:03 +0700 Subject: [PATCH 3/3] Fix build -> 3nd form built --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1f2291..8a5fc0f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ 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?