From a4dd4bd12156ff5ea3f1aea42202ed0b0aedf87e Mon Sep 17 00:00:00 2001 From: Robert Schadek Date: Wed, 23 Sep 2015 11:14:11 +0200 Subject: [PATCH] read_and_print comment typo fix read and print and int -> read and print an int --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9794ac8..3aa2097 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1591,7 +1591,7 @@ If something is a well-specified action, separate it out from its surrounding c **Example, don't**: - void read_and_print(istream& is) // read and print and int + void read_and_print(istream& is) // read and print an int { int x; if (is>>x)