about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorVanja Cosic <vanjacosic@gmail.com>2016-09-26 20:55:59 +0200
committerGitHub <noreply@github.com>2016-09-26 20:55:59 +0200
commit0bd7ef0996e8edf11c46f85553af133d38e74881 (patch)
tree37a1dfcdf360cf382cb5b99904e1700ff35a1d5a /src/doc
parent172d321f9fc56aa008f48f82d79dea85b620231e (diff)
Remove whitespace from line endings
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/book/getting-started.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/book/getting-started.md b/src/doc/book/getting-started.md
index 91e25e81026..bff448aadd5 100644
--- a/src/doc/book/getting-started.md
+++ b/src/doc/book/getting-started.md
@@ -230,12 +230,12 @@ $ cd hello_world
 
 ## Writing and Running a Rust Program
 
-We need to create a source file for our Rust program. Rust files always end 
-in a *.rs* extension. If you are using more than one word in your filename, 
-use an underscore to separate them; for example, you would use 
+We need to create a source file for our Rust program. Rust files always end
+in a *.rs* extension. If you are using more than one word in your filename,
+use an underscore to separate them; for example, you would use
 *my_program.rs* rather than *myprogram.rs*.
 
-Now, make a new file and call it *main.rs*. Open the file and type 
+Now, make a new file and call it *main.rs*. Open the file and type
 the following code:
 
 ```rust