about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-02-27 02:20:29 +0000
committerbors <bors@rust-lang.org>2017-02-27 02:20:29 +0000
commitcb1f6492dd8bb3fcb7e76e9d2bc92450eee7690b (patch)
tree069ea06fee2c361e9a4ba9272025d7b59aeeee55
parent8e08bd61a1b2828e9a9bbbe531246dbcd3c1889d (diff)
parent912ce53604612cf3fa6b4d8abcde07f0023d37a3 (diff)
downloadrust-cb1f6492dd8bb3fcb7e76e9d2bc92450eee7690b.tar.gz
rust-cb1f6492dd8bb3fcb7e76e9d2bc92450eee7690b.zip
Auto merge of #40115 - MajorBreakfast:patch-2, r=steveklabnik
Loop docs: Present perfect instead of simple past

Sounds better with present perfect because there's a link to the present.

I'm not a native speaker, though. So, plz check whether it really is better ;)

r? @steveklabnik
-rw-r--r--src/doc/book/src/loops.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/book/src/loops.md b/src/doc/book/src/loops.md
index ec4acfa3112..b7658d57a9e 100644
--- a/src/doc/book/src/loops.md
+++ b/src/doc/book/src/loops.md
@@ -100,7 +100,8 @@ developers.
 
 ### Enumerate
 
-When you need to keep track of how many times you already looped, you can use the `.enumerate()` function.
+When you need to keep track of how many times you have already looped, you can
+use the `.enumerate()` function.
 
 #### On ranges: