Skip to content

Commit 4e6e27c

Browse files
authored
Merge pull request MicrosoftDocs#548 from nschonni/typo-greater
typo: geater -> greater
2 parents 289ae99 + f2e250d commit 4e6e27c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/standard-library/map-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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));

docs/standard-library/multimap-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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));

docs/standard-library/multiset-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)