Skip to content

Commit 7d2c61d

Browse files
author
Colin Robertson
authored
Fix _Ugly names to be less ugly
1 parent 7d41577 commit 7d2c61d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/standard-library/vector-class.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -796,16 +796,16 @@ Inserts an element constructed in place into the vector at a specified position.
796796
```cpp
797797
template <class... Types>
798798
iterator emplace(
799-
const_iterator _Where,
800-
Types&&... _Args);
799+
const_iterator position,
800+
Types&&... args);
801801
```
802802
803803
### Parameters
804804
805-
*_Where*\
805+
*position*\
806806
The position in the [vector](../standard-library/vector-class.md) where the first element is inserted.
807807
808-
*_Args*\
808+
*args*\
809809
Constructor arguments. The function infers which constructor overload to invoke based on the arguments provided.
810810
811811
### Return Value
@@ -864,12 +864,12 @@ Adds an element constructed in place to the end of the vector.
864864

865865
```cpp
866866
template <class... Types>
867-
void emplace_back(Types&&... _Args);
867+
void emplace_back(Types&&... args);
868868
```
869869
870870
### Parameters
871871
872-
*_Args*\
872+
*args*\
873873
Constructor arguments. The function infers which constructor overload to invoke based on the arguments provided.
874874
875875
### Example

0 commit comments

Comments
 (0)