Merge pull request #21 from avkrotov/implemenets
authorRalf Jung <post@ralfj.de>
Fri, 16 Sep 2016 06:53:44 +0000 (08:53 +0200)
committerGitHub <noreply@github.com>
Fri, 16 Sep 2016 06:53:44 +0000 (08:53 +0200)
s/implemenets/implements/

TODO.txt
src/part04.rs

index ed3434cd3cb4a6d00cf69349331f8dd34dd56416..0e31a4ac84efe2571e7b5882e78c40c88642eb3d 100644 (file)
--- a/TODO.txt
+++ b/TODO.txt
@@ -1,3 +1,3 @@
 
-* Shared-memoty concurrency, interior mutability, Sync: Concurrent counter
+* Shared-memory concurrency, interior mutability, Sync: Concurrent counter
 * Drop, unsafe: doubly-linked list
index cb101fe10fbed065e41a4bb9e1bdb0416db4f133..83eb87dcf6604b5ee7a2f53cefa0200b85cc1769 100644 (file)
@@ -49,7 +49,7 @@ fn ownership_demo() {
 //@ vector. Hence, when `vec_min` finishes, the entire vector is deleted. That's of course not what
 //@ we wanted! Can't we somehow give `vec_min` access to the vector, while retaining ownership of it?
 //@ 
-//@ Rust calls this *a reference* the vector, and it considers references as *borrowing* ownership. This
+//@ Rust calls this *a reference* to the vector, and it considers references as *borrowing* ownership. This
 //@ works a bit like borrowing does in the real world: If your friend borrows a book from you, your friend
 //@ can have it and work on it (and you can't!) as long as the book is still borrowed. Your friend could
 //@ even lend the book to someone else. Eventually however, your friend has to give the book back to you,