Skip to content

Commit ba900c3

Browse files
author
mikeblome
committed
fixes 1719
1 parent b69d5e1 commit ba900c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/cppcx/platform-collections-vector-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Platform::Collections::Vector Class"
3-
ms.date: "10/01/2019"
3+
ms.date: "12/04/2019"
44
ms.topic: "reference"
55
f1_keywords: ["COLLECTION/Platform::Collections::Vector::Vector", "COLLECTION/Platform::Collections::Vector::Append", "COLLECTION/Platform::Collections::Vector::Clear", "COLLECTION/Platform::Collections::Vector::First", "COLLECTION/Platform::Collections::Vector::GetAt", "COLLECTION/Platform::Collections::Vector::GetMany", "COLLECTION/Platform::Collections::Vector::GetView", "COLLECTION/Platform::Collections::Vector::IndexOf", "COLLECTION/Platform::Collections::Vector::InsertAt", "COLLECTION/Platform::Collections::Vector::ReplaceAll", "COLLECTION/Platform::Collections::Vector::RemoveAt", "COLLECTION/Platform::Collections::Vector::RemoveAtEnd", "COLLECTION/Platform::Collections::Vector::SetAt", "COLLECTION/Platform::Collections::Vector::Size", "COLLECTION/Platform::Collections::Vector::VectorChanged"]
66
helpviewer_keywords: ["Vector Class (C++/Cx)"]
@@ -62,7 +62,7 @@ If you attempt to use a **Vector** type in a public return value or parameter, c
6262
|[Vector::GetMany](#getmany)|Retrieves a sequence of items from the current Vector, starting at the specified index.|
6363
|[Vector::GetView](#getview)|Returns a read-only view of a Vector; that is, a [Platform::Collections::VectorView](../cppcx/platform-collections-vectorview-class.md).|
6464
|[Vector::IndexOf](#indexof)|Searches for the specified item in the current Vector, and if found, returns the index of the item.|
65-
|[Vector::InsertAt](#insertat)|Inserts the specified item into the current Vector after the element identified by the specified index.|
65+
|[Vector::InsertAt](#insertat)|Inserts the specified item into the current Vector at the element identified by the specified index.|
6666
|[Vector::ReplaceAll](#replaceall)|Deletes the elements in the current Vector and then inserts the elements from the specified array.|
6767
|[Vector::RemoveAt](#removeat)|Deletes the element identified by the specified index from the current Vector.|
6868
|[Vector::RemoveAtEnd](#removeatend)|Deletes the element at the end of the current Vector.|
@@ -222,7 +222,7 @@ IndexOf uses std::find_if to find the item. Custom element types should therefor
222222
223223
## <a name="insertat"></a> Vector::InsertAt Method
224224
225-
Inserts the specified item into the current Vector after the element identified by the specified index.
225+
Inserts the specified item into the current Vector at the element identified by the specified index.
226226
227227
### Syntax
228228
@@ -236,7 +236,7 @@ virtual void InsertAt(unsigned int index, T item)
236236
A zero-based, unsigned integer that specifies a particular element in the Vector object.
237237

238238
*item*<br/>
239-
An item to insert into the Vector after the element specified by *index*. The type of *item* is defined by the *T* typename.
239+
An item to insert into the Vector at the element specified by *index*. The type of *item* is defined by the *T* typename.
240240

241241
## <a name="removeat"></a> Vector::RemoveAt Method
242242

0 commit comments

Comments
 (0)