Correct multiple problems in related sentences.

This commit is contained in:
Andreas Scherer
2015-10-18 16:09:23 +02:00
parent 3e8dc12982
commit 545c7c40e3

View File

@@ -5869,13 +5869,13 @@ Consider:
void print(int a, int base);
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_based(int a, int base);
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