fix typos in README (#393)

This commit is contained in:
Jochen Bartl 2021-12-21 00:12:11 +01:00 committed by GitHub
parent a127e139ae
commit ab0673a688
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.