Skip to content

Commit 2517b94

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#1829 from MicrosoftDocs/master637136734956664882
Fix git push error for protected CLA branch
2 parents 534daa4 + dc1242f commit 2517b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/initializing-classes-and-structs-without-constructors-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ The standard library container classes, and also `string`, `wstring`, and `regex
159159
vector<int> v1{ 9, 10, 11 };
160160
map<int, string> m1{ {1, "a"}, {2, "b"} };
161161
string s{ 'a', 'b', 'c' };
162-
regex rgx{'x', 'y', 'z'};
162+
regex rgx{ 'x', 'y', 'z' };
163163
```
164164

165165

0 commit comments

Comments
 (0)