We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 305e1f9 commit 9f28d71Copy full SHA for 9f28d71
docs/standard-library/list-class.md
@@ -636,7 +636,7 @@ The number '30' is in c1 collection 3 times.
636
Inserts an element constructed in place into a list at a specified position.
637
638
```
639
-void emplace_back(iterator Where, Type&& val);
+void emplace(iterator Where, Type&& val);
640
641
642
### Parameters
@@ -675,7 +675,7 @@ Moved first element: a
675
676
677
## <a name="emplace_back"></a> list::emplace_back
678
- Adds an element constructed in place to the beginning of a list.
+ Adds an element constructed in place to the end of a list.
679
680
681
void emplace_back(Type&& val);
0 commit comments