File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1754,7 +1754,7 @@ int main()
17541754 m1.insert(Int_Pair(4, 40));
17551755
17561756 // Create an empty map m2 with the key comparison
1757- // function of geater than, then insert 2 elements
1757+ // function of greater than, then insert 2 elements
17581758 map <int, int, less<int> > m2;
17591759 m2.insert(Int_Pair(1, 10));
17601760 m2.insert(Int_Pair(2, 20));
Original file line number Diff line number Diff line change @@ -1615,7 +1615,7 @@ int main()
16151615 m1.insert(Int_Pair(4, 40));
16161616
16171617 // Create an empty multimap m2 with the key comparison
1618- // function of geater than, then insert 2 elements
1618+ // function of greater than, then insert 2 elements
16191619 multimap <int, int, less<int> > m2;
16201620 m2.insert(Int_Pair(1, 10));
16211621 m2.insert(Int_Pair(2, 20));
Original file line number Diff line number Diff line change @@ -1527,7 +1527,7 @@ int main()
15271527 ms1.insert(40);
15281528
15291529 // Create an empty multiset ms2 with the key comparison
1530- // function of geater than, then insert 2 elements
1530+ // function of greater than, then insert 2 elements
15311531 multiset <int, less<int> > ms2;
15321532 ms2.insert(10);
15331533 ms2.insert(20);
You can’t perform that action at this time.
0 commit comments