From 34d2af08443317998187666bf9700c91bc938474 Mon Sep 17 00:00:00 2001 From: Sudo Nice Date: Mon, 21 Sep 2020 09:48:35 +0300 Subject: [PATCH] Fix code output --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 11bb007..aec5c0c 100644 --- a/README.md +++ b/README.md @@ -6698,6 +6698,7 @@ fn main() { This prints: ```text +I love the number 1 I really love the number 1 1 is such a nice number I love the number 5 @@ -10355,8 +10356,8 @@ fn main() { This prints: ```text -40 None +40 ``` We can also implement `DerefMut` so we can change the values through `*`. It looks almost the same. You need `Deref` before you can implement `DerefMut`.