Merge pull request #38 from bzindovic/part04-variable-type-patch
authorRalf Jung <post@ralfj.de>
Wed, 26 Apr 2023 10:21:56 +0000 (12:21 +0200)
committerGitHub <noreply@github.com>
Wed, 26 Apr 2023 10:21:56 +0000 (12:21 +0200)
Fix the variable type

src/part04.rs

index 21654cd3cd46b827c71993408c989bc7a8301de5..2381ff4ed00a631618e342ee9abdd47d65253939 100644 (file)
@@ -106,7 +106,7 @@ fn shared_ref_demo() {
 //@ their official name.
 
 //@ As an example, consider a function which increments every element of a vector by 1.
-//@ The type `&mut Vec<i32>` is the type of mutable references to `vec<i32>`. Because the reference
+//@ The type `&mut Vec<i32>` is the type of mutable references to `Vec<i32>`. Because the reference
 //@ is mutable, we can use a mutable iterator, providing mutable references to the elements.
 fn vec_inc(v: &mut Vec<i32>) {
     for e in v.iter_mut() {