about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-11-17 15:12:15 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-11-17 15:12:15 +0530
commite81c72e78e958d54a3bd9e096d1dbf3fb6d0d104 (patch)
tree1c0c9a727240723a5a79b813ebf5532936c4ff5d
parentc063c521ec6a42c5d9875c0e94d9233c090cc9e6 (diff)
parent4ff4d3220677796f651dcd26bcaf048b61f79683 (diff)
Rollup merge of #29881 - jeanm:patch-1, r=Manishearth
Change conditional perfect to past perfect.
-rw-r--r--src/doc/trpl/ownership.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md
index d8ef44b782a..17b263ef00a 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -187,7 +187,7 @@ fn change_truth(x: bool) -> bool {
 }
 ```
 
-If we would have used types that do not implement the `Copy` trait,
+If we had used types that do not implement the `Copy` trait,
 we would have gotten a compile error because we tried to use a moved value.
 
 ```text