Update ch13-01-closures.md

This commit is contained in:
David Deprost
2017-07-25 00:16:41 +02:00
committed by GitHub
parent 50c9f0f80c
commit 1dadefd7b9

View File

@@ -341,7 +341,7 @@ traits involved with closures.
### Closure Type Inference and Annotation
Closures are different than functions defined with the `fn` keyword in a few
Closures differ from functions defined with the `fn` keyword in a few
ways. The first is that closures dont require you to annotate the types of the
parameters or the return value like `fn` functions do.