Merge pull request #2241 from tshepang/patch-3

typo
diff --git a/src/expressions/closure-expr.md b/src/expressions/closure-expr.md
index 8f71ddd..ac9a69d 100644
--- a/src/expressions/closure-expr.md
+++ b/src/expressions/closure-expr.md
@@ -46,7 +46,7 @@
 r[expr.closure.trait-impl]
 ## Closure trait implementations
 
-Which traits the closure type implement depends on how variables are captured, the types of the captured variables, and the presence of `async`. See the [call traits and coercions] chapter for how and when a closure implements `Fn`, `FnMut`, and `FnOnce`. The closure type implements [`Send`] and [`Sync`] if the type of every captured variable also implements the trait.
+Which traits the closure type implements depends on how variables are captured, the types of the captured variables, and the presence of `async`. See the [call traits and coercions] chapter for how and when a closure implements `Fn`, `FnMut`, and `FnOnce`. The closure type implements [`Send`] and [`Sync`] if the type of every captured variable also implements the trait.
 
 r[expr.closure.async]
 ## Async closures