From 10d126b3131f79f27c7cd105cade127ab10c7fd2 Mon Sep 17 00:00:00 2001 From: Hasan Date: Thu, 23 Jul 2020 00:15:50 -0700 Subject: [PATCH] Fix RC header --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9868105..3e1e729 100644 --- a/README.md +++ b/README.md @@ -5067,7 +5067,7 @@ error[E0412]: cannot find type `WorldsBestType` in this scope ```todo!()``` is actually the same as another macro: ```unimplemented!()```. Programmers were using ```unimplemented()``` a lot but it was long to type, so they created ```todo!()``` which is shorter. -#Rc +# Rc Rc means "reference counter". You know that in Rust, every variable can only have one owner. That is why this doesn't work: