From 1dadefd7b948bf20972ae4ece891fb58a744d772 Mon Sep 17 00:00:00 2001 From: David Deprost Date: Tue, 25 Jul 2017 00:16:41 +0200 Subject: [PATCH] Update ch13-01-closures.md --- second-edition/src/ch13-01-closures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/src/ch13-01-closures.md b/second-edition/src/ch13-01-closures.md index be3d0c969..0728074f9 100644 --- a/second-edition/src/ch13-01-closures.md +++ b/second-edition/src/ch13-01-closures.md @@ -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 don’t require you to annotate the types of the parameters or the return value like `fn` functions do.