From f01bded2a1f46b4a5dc4885910bc5e220e196b86 Mon Sep 17 00:00:00 2001 From: hsutter Date: Mon, 24 Jul 2017 11:41:03 -0700 Subject: [PATCH] Elminated 's' typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index e3b2c1d..cc73cfe 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -13319,7 +13319,7 @@ The less sharing you do, the less chance you have to wait on a lock (so performa Image altitude_map(const vector&); // ... - void process_readings(const vector& surface_readings) + void process_readings(const vector& surface_readings) { auto h1 = async([&] { if (!validate(surface_readings)) throw Invalid_data{}; }); auto h2 = async([&] { return temperature_gradiants(surface_readings); });