From 79210c5def72ca483206489b4fb1b5497987466b Mon Sep 17 00:00:00 2001 From: Chad Ostrowski <221614+chadoh@users.noreply.github.com> Date: Mon, 20 Jun 2022 11:36:16 -0400 Subject: [PATCH] less words --- src/counter/impl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/counter/impl.md b/src/counter/impl.md index d289781..8f599c8 100644 --- a/src/counter/impl.md +++ b/src/counter/impl.md @@ -51,7 +51,7 @@ Next let's see how to mutate or change `val`. ### `;` -Rust uses semicolons to separate expressions. You'll see that the last line here is the same as the only line in `get_num`, with no semicolon. You may have already guessed that this means `set_num` also returns the value of `num`. This also matches the return type, `-> i8`. +Rust uses semicolons to separate expressions. See that the last line here is the same as the only line in `get_num`, with no semicolon. You may have already guessed that this means `set_num` also returns the value of `num`. This also matches the return type, `-> i8`. ### `&mut self`