F.52: Improve language just a bit (#1770)

This commit is contained in:
Juha Reunanen 2021-04-06 05:22:05 +03:00 committed by GitHub
parent 077a29ee3c
commit 402565d74e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3895,7 +3895,7 @@ Unfortunately, there is no simple way to capture by reference to `const` to get
##### Example
Here, a large object (a network message) is passed to an iterative algorithm, and is it not efficient or correct to copy the message (which might not be copyable):
Here, a large object (a network message) is passed to an iterative algorithm, and it is not efficient or correct to copy the message (which might not be copyable):
std::for_each(begin(sockets), end(sockets), [&message](auto& socket)
{