Skip to content

Commit 28571ae

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#2143 from tgkei/master
Fix: typo at fill example (c0 -> v1)
2 parents 8ead73a + f6c610d commit 28571ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/array-class-stl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ int main()
827827
828828
v1.fill(3);
829829
cout << "v1 = ";
830-
for (const auto& it : c0)
830+
for (const auto& it : v1)
831831
{
832832
std::cout << " " << it;
833833
}

0 commit comments

Comments
 (0)