From 9275e7da0971e5d2fcf4035c46083b8a8f83091a Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 4 Apr 2019 11:27:40 -0700 Subject: [PATCH] Fixed typo in previous commit, closes #1395 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index dcd9562..0d92692 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -13873,7 +13873,7 @@ Local static variables are a common source of data races. ##### Example, bad: - void f(fstream& fs, regex pat) + void f(fstream& fs, regex pattern) { array buf; int sz = read_vec(fs, buf, max); // read from fs into buf