Fix grammar

Change conditional perfect to past perfect.
This commit is contained in:
Jean Maillard 2015-11-17 02:39:09 +00:00
parent a7644b33d9
commit 4ff4d32206

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