about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2015-10-03 20:21:39 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2015-10-03 20:21:39 +0200
commitaeb94a194802381c72cf81492c25daee6f30df03 (patch)
tree2e2d31471a2c44277c050993235b3f8a546c3d56
parent0369304feb732f0bc89e19e9f09cb3ec9d94fe9a (diff)
downloadrust-aeb94a194802381c72cf81492c25daee6f30df03.tar.gz
rust-aeb94a194802381c72cf81492c25daee6f30df03.zip
Add missing dot
-rw-r--r--src/doc/trpl/hello-world.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/hello-world.md b/src/doc/trpl/hello-world.md
index cd4326a28d8..f04a9132b52 100644
--- a/src/doc/trpl/hello-world.md
+++ b/src/doc/trpl/hello-world.md
@@ -142,7 +142,7 @@ main.exe  main.rs
 ```
 
 There are now two files: our source code, with the `.rs` extension, and the
-executable (`main.exe` on Windows, `main` everywhere else)
+executable (`main.exe` on Windows, `main` everywhere else).
 
 ```bash
 $ ./main  # or main.exe on Windows