Browse Source

Fix typo in generational box readme

ealmloff 1 năm trước cách đây
mục cha
commit
1cf8f71368
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/generational-box/README.md

+ 1 - 1
packages/generational-box/README.md

@@ -31,4 +31,4 @@ let store = Store::default();
 
 ## How it works
 
-Internally, `generational-box` creates an arena of generational RefCell's that are recyled when the owner is dropped. You can think of the cells as something like `&'static RefCell<Box<dyn Any>>` with some a generational check to make recyling a cell easier to debug. Then GenerationalBox's are `Copy` because the `&'static` pointer is `Copy`
+Internally, `generational-box` creates an arena of generational RefCell's that are recyled when the owner is dropped. You can think of the cells as something like `&'static RefCell<Box<dyn Any>>` with a generational check to make recyling a cell easier to debug. Then GenerationalBox's are `Copy` because the `&'static` pointer is `Copy`