diff options
author | 2019-09-24 14:51:12 +0200 | |
---|---|---|
committer | 2019-09-24 14:51:12 +0200 | |
commit | c08171e89e9336f87a7eb27881897cfa34529125 (patch) | |
tree | f87a33b9d3cd6ccf8882d3e9c49c42d1c429656a /README.md | |
parent | a975754ab0983b9dc12bc0d0fc63049ee812d1c5 (diff) | |
download | iced-c08171e89e9336f87a7eb27881897cfa34529125.tar.gz iced-c08171e89e9336f87a7eb27881897cfa34529125.tar.bz2 iced-c08171e89e9336f87a7eb27881897cfa34529125.zip |
Clarify `README`
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -156,11 +156,10 @@ its own standalone crate, as it could potentially benefit other engines and applications. I thought it was a great idea, and after a bit of work... Iced is here! -As an interesting note, Iced does not rely on reference counting and interior -mutability. There is not a single `Rc`, `RefCell`, or similar used -directly in the library. As a consequence, compiler guarantees stay intact and -many kinds of pesky bugs and runtime errors are banished. No spooky action at -a distance! +As an interesting note, the core of Iced does not rely on interior mutability. +Usage of types like `RefCell` is restricted to runtime boundaries. As a +consequence, compiler guarantees stay intact and many kinds of pesky bugs and +runtime errors are banished. No spooky action at a distance! [this pull request]: https://github.com/hecrj/coffee/pull/35 [`stretch`]: https://github.com/vislyhq/stretch |