]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #22906 - alexandercampbell:readme_typo_fix, r=steveklabnik
authorManish Goregaokar <manishsmail@gmail.com>
Mon, 2 Mar 2015 08:08:43 +0000 (13:38 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Mon, 2 Mar 2015 20:16:28 +0000 (01:46 +0530)
 Typo fix for the \"30 Minute Intro\".

CONTRIBUTING guide says I should do this:

r? @steveklabnik

src/doc/intro.md

index 07a90959deb693b30fbf629a50d950c9c52cc03c..d145eaada2b0e0f1f81c87bfaf2f3a6ba82d3ea3 100644 (file)
@@ -510,10 +510,10 @@ numbers[1] is 3
 numbers[0] is 2
 ```
 
-Each time, we can get a slithtly different output because the threads
-are not quaranteed to run in any set order. If you get the same order
-every time it is because each of these threads are very small and
-complete too fast for their indeterminate behavior to surface.
+Each time, we can get a slightly different output because the threads are not
+guaranteed to run in any set order. If you get the same order every time it is
+because each of these threads are very small and complete too fast for their
+indeterminate behavior to surface.
 
 The important part here is that the Rust compiler was able to use ownership to
 give us assurance _at compile time_ that we weren't doing something incorrect