Skip to content

Commit 13c3521

Browse files
Added a space to maintain style consistency (#3892)
1 parent f7a1412 commit 13c3521

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/algorithm-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ template<class T> void equal_range_demo( const vector<T>& original_vector, T val
12271227

12281228
sort( v.begin(), v.end() );
12291229
cout << "Vector sorted by the default binary predicate <:" << endl << '\t';
1230-
for (typename vector<T>::const_iterator i = v.begin(); i != v.end(); ++i )
1230+
for ( typename vector<T>::const_iterator i = v.begin(); i != v.end(); ++i )
12311231
{
12321232
cout << *i << " ";
12331233
}

0 commit comments

Comments
 (0)