Skip to content

Commit 772557a

Browse files
committed
.
1 parent 764563f commit 772557a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Standard Template Library/MultiMaps.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ int main() {
1515
lookup.insert(make_pair(30, "Raj"));
1616
lookup.insert(make_pair(20, "Bob"));
1717

18-
// multimap stores values with the same key unlike normal map
19-
// not storing same key values and over writing the string
18+
// multimap stores values with the same key unlike normal map not storing same key values and over writing the string
2019

2120
for (multimap<int, string>::iterator it = lookup.begin(); it != lookup.end(); it++) {
2221

Standard Template Library/Stacks-and-queues.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ int main() {
4040
Test &test1 = testStack.top();
4141
testStack.pop();
4242
test1.print();
43-
Reference refers to destroy objects
43+
Reference refers to destroyed objects
4444
*/
4545

4646
while (testStack.size() > 0) {

0 commit comments

Comments
 (0)