about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2014-06-26 15:31:41 -0400
committerSteve Klabnik <steve@steveklabnik.com>2014-06-26 15:31:41 -0400
commit98fd2abe0a8cecf26c6ae21d13c8a192fbdbf85d (patch)
tree8f7c8f33f5cf63fd25ee4f41e925896713b80bcb /src
parentfb594484e6b290f95efc8a6108b6e9892a3016bc (diff)
downloadrust-98fd2abe0a8cecf26c6ae21d13c8a192fbdbf85d.tar.gz
rust-98fd2abe0a8cecf26c6ae21d13c8a192fbdbf85d.zip
tha -> than
Thanks @huonw :heart:
Diffstat (limited to 'src')
-rw-r--r--src/doc/guide.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index deaeec01e85..a7df8b697ed 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -396,10 +396,10 @@ Hello, world!
 
 Bam! We build our project with `cargo build`, and run it with
 `./target/hello_world`. This hasn't bought us a whole lot over our simple use
-of `rustc`, but think about the future: when our project has more tha one file,
-we would need to call `rustc` twice, and pass it a bunch of options to tell it
-to build everything together. With Cargo, as our project grows, we can just
-`cargo build` and it'll work the right way.
+of `rustc`, but think about the future: when our project has more than one
+file, we would need to call `rustc` twice, and pass it a bunch of options to
+tell it to build everything together. With Cargo, as our project grows, we can
+just `cargo build` and it'll work the right way.
 
 That's it! We've successfully built `hello_world` with Cargo. Even though our
 program is simple, it's using all of the real tooling that you'll use for the