diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3548ffc..5c86b56 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3135,7 +3135,7 @@ such as `string` and `vector`, that needs to do free store allocations. To compare, if we passed out all values as return values, we would something like this: - pair get_string(istream& is); // not recommended + pair get_string(istream& is) // not recommended { string s; is >> s;