Skip to content

Commit a4dd4bd

Browse files
committed
read_and_print comment typo fix
read and print and int -> read and print an int
1 parent 245f82a commit a4dd4bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,7 @@ If something is a well-specified action, separate it out from its surrounding c
15911591

15921592
**Example, don't**:
15931593

1594-
void read_and_print(istream& is) // read and print and int
1594+
void read_and_print(istream& is) // read and print an int
15951595
{
15961596
int x;
15971597
if (is>>x)

0 commit comments

Comments
 (0)