From 317894a4db4509649aec59f9995ff91c8c905f50 Mon Sep 17 00:00:00 2001 From: Dima Date: Fri, 23 Dec 2016 21:52:11 -0800 Subject: [PATCH] Typo: `s/would no compile/would not compile/`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 291f7f0..b80e20d 100644 --- a/README.md +++ b/README.md @@ -393,7 +393,7 @@ int factory(int i) { return i * 10; } auto f = [x = factory(2)] { return x; }; // returns 20 auto generator = [x = 0] () mutable { - // this would no compile without 'mutable' as we are modifying x on each call + // this would not compile without 'mutable' as we are modifying x on each call return x++; }; auto a = generator(); // == 0