Rollup merge of #29881 - jeanm:patch-1, r=Manishearth

Change conditional perfect to past perfect.
This commit is contained in:
Manish Goregaokar 2015-11-17 15:12:15 +05:30
commit e81c72e78e

View File

@ -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