F.20: Improve language just a bit (#1768)

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

View File

@ -3087,7 +3087,7 @@ Such older advice is now obsolete; it does not add value, and it interferes with
}
The argument for adding `const` to a return value is that it prevents (very rare) accidental access to a temporary.
The argument against is prevents (very frequent) use of move semantics.
The argument against is that it prevents (very frequent) use of move semantics.
##### Exceptions