From 71a8c387682ff78cd08373c2a379ec4c23b8bff4 Mon Sep 17 00:00:00 2001 From: Katherine Sullivan Date: Tue, 6 Dec 2016 01:36:48 -0500 Subject: [PATCH] fix missing semicolon --- 08-Considering_Performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08-Considering_Performance.md b/08-Considering_Performance.md index 5bfd793..049a532 100644 --- a/08-Considering_Performance.md +++ b/08-Considering_Performance.md @@ -329,5 +329,5 @@ f("world"); // Good Idea auto f = [](const std::string &s) { return my_function("hello", s); }; -f("world") +f("world"); ```