mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
Correct multiple problems in related sentences.
This commit is contained in:
@@ -5869,13 +5869,13 @@ Consider:
|
|||||||
void print(int a, int base);
|
void print(int a, int base);
|
||||||
void print(const string&);
|
void print(const string&);
|
||||||
|
|
||||||
These three functions all prints their arguments (appropriately). Conversely
|
These three functions all print their arguments (appropriately). Conversely:
|
||||||
|
|
||||||
void print_int(int a);
|
void print_int(int a);
|
||||||
void print_based(int a, int base);
|
void print_based(int a, int base);
|
||||||
void print_string(const string&);
|
void print_string(const string&);
|
||||||
|
|
||||||
These three functions all prints their arguments (appropriately). Adding to the name just introduced verbosity and inhibits generic code.
|
These three functions all print their arguments (appropriately). Adding to the name just introduced verbosity and inhibits generic code.
|
||||||
|
|
||||||
##### Enforcement
|
##### Enforcement
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user