From 4ff4d3220677796f651dcd26bcaf048b61f79683 Mon Sep 17 00:00:00 2001 From: Jean Maillard Date: Tue, 17 Nov 2015 02:39:09 +0000 Subject: [PATCH] Fix grammar Change conditional perfect to past perfect. --- src/doc/trpl/ownership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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