Skip to content

Commit 9f28d71

Browse files
authored
Update list-class.md
1 parent 305e1f9 commit 9f28d71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/standard-library/list-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ The number '30' is in c1 collection 3 times.
636636
Inserts an element constructed in place into a list at a specified position.
637637

638638
```
639-
void emplace_back(iterator Where, Type&& val);
639+
void emplace(iterator Where, Type&& val);
640640
```
641641

642642
### Parameters
@@ -675,7 +675,7 @@ Moved first element: a
675675
```
676676

677677
## <a name="emplace_back"></a> list::emplace_back
678-
Adds an element constructed in place to the beginning of a list.
678+
Adds an element constructed in place to the end of a list.
679679

680680
```
681681
void emplace_back(Type&& val);

0 commit comments

Comments
 (0)