From: Ralf Jung Date: Sun, 10 Apr 2016 20:45:39 +0000 (+0200) Subject: Merge pull request #7 from leesper/master X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/98765a4ec4731843578d0631f5a10b5d876549f2?hp=effe564cc436346993a7a463a326e397e226f5b6 Merge pull request #7 from leesper/master fix typo --- diff --git a/src/part05.rs b/src/part05.rs index 784440c..8a2cd90 100644 --- a/src/part05.rs +++ b/src/part05.rs @@ -124,7 +124,7 @@ enum Variant { Text(String), } //@ Now consider the following piece of code. Like above, `n` will be a reference to a part of `var`, -//@ and since we wrote `ref mut`, the reference will be uniqie and mutable. In other words, right after the match, `ptr` +//@ and since we wrote `ref mut`, the reference will be unique and mutable. In other words, right after the match, `ptr` //@ points to the number that's stored in `var`, where `var` is a `Number`. Remember that `_` means //@ "we don't care". fn work_on_variant(mut var: Variant, text: String) {