From 87042ba89df03bbd798c324d648238084beafc06 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Wed, 5 Jul 2017 13:57:53 -0700 Subject: [PATCH] Fix a typo --- text/0000-refcell-replace.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0000-refcell-replace.md b/text/0000-refcell-replace.md index 35d281b5647..2adf950322d 100644 --- a/text/0000-refcell-replace.md +++ b/text/0000-refcell-replace.md @@ -24,7 +24,7 @@ One of the most important parts of the ergonomics initiative has been reducing "type tetris" exactly like that `&mut *`. It also seems weird that this use-case is so much cleaner with a plain `Cell`, -even though plain `Cell` is strictly a less popular abstraction. +even though plain `Cell` is strictly a less powerful abstraction. Usually, people explain `RefCell` as being a superset of `Cell`, but `RefCell` doesn't actually offer all of the functionality as seamlessly as `Cell`.