ref: 6251ebaf34b0e9bed2d4a9a29854c362beab75e7
parent: 5deb7b51643f112b6eab8901a561522bed392a68
author: Lennart Augustsson <lennart@augustsson.net>
date: Wed Dec 27 16:03:26 EST 2023
Update README.md
--- a/README.md
+++ b/README.md
@@ -228,8 +228,8 @@
So accessing a field `a` in record `r` is written `r.a`.
Updating a field has the usual Haskell syntax `r{ a = e }`, but the type is overloaded so this can update the `a` field in any record.The typeclass `HasField` captures this. `HasField "name" rec ty` expresses that the record type `rec` has a field `name` with type `ty`.
-Record updates can also update nested fields, e.g., `r{ a.b.c = e }`. Note that this will not work in GHC, since GHC does not-fully implement `OverloadedRecordUpdate` has not been fully implemented in GHC.
+Record updates can also update nested fields, e.g., `r{ a.b.c = e }`. Note that this will not easily work in GHC, since GHC does not+fully implement `OverloadedRecordUpdate`. When GHC decides how to do it, MicroHs will follow suit.
### Features
The runtime system can serialize and deserialize any expression
--
⑨