From 6192c6af5b1b71bb0c1631bbfac62acac72ef604 Mon Sep 17 00:00:00 2001 From: Jochen Bartl Date: Mon, 20 Dec 2021 22:49:07 +0100 Subject: [PATCH] fix typos in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29850654..cc0584c6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ changes in this release. and old-time iteration based on [iter](https://github.com/c-cube/iter) is now named `of_iter`, `to_iter`, etc. - Here you need to change you code, possibly using search and replace. + Here you need to change your code, possibly using search and replace. Thankfully, the typechecker should guide you. 3. `Array_slice` and `String.Sub` have been removed to simplify the @@ -127,7 +127,7 @@ that will cause comparison errors ie. identical hashtables will be seen as different or vice versa. Every time you use a polymorphic comparison where you're using a data type -where structural comparison != semantic comparison, it's a bug. And ever time +where structural comparison != semantic comparison, it's a bug. And every time you use polymorphic comparison where the type of data being compared may vary (e.g. it's an int now, but it may be a map later), you're planting a bug for the future.