mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Elminated 's' typo
This commit is contained in:
parent
a55cd51662
commit
f01bded2a1
|
@ -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<Reading>&);
|
||||
// ...
|
||||
|
||||
void process_readings(const vector<Readings>& surface_readings)
|
||||
void process_readings(const vector<Reading>& surface_readings)
|
||||
{
|
||||
auto h1 = async([&] { if (!validate(surface_readings)) throw Invalid_data{}; });
|
||||
auto h2 = async([&] { return temperature_gradiants(surface_readings); });
|
||||
|
|
Loading…
Reference in New Issue
Block a user