From 042ed5038101d59a9d438cc2410fd9c91a343753 Mon Sep 17 00:00:00 2001 From: Andrew Chellis Date: Mon, 24 Oct 2016 03:43:42 -0400 Subject: [c++/en] Fix typo of iterator (#2501) iteartor -> iterator --- c++.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c++.html.markdown') diff --git a/c++.html.markdown b/c++.html.markdown index 5dc1af59..7dc9afbe 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -1011,7 +1011,7 @@ for(int i=0; i::iterator it; // initialize the iteartor for vector +vector::iterator it; // initialize the iterator for vector for(it=vector_name.begin(); it!=vector_name.end();++it) // For accessing the element of the vector -- cgit v1.2.3