Skip to content

Commit 52803ee

Browse files
TylerMSFTTylerMSFT
authored andcommitted
acrolinx
1 parent bd434de commit 52803ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/dotnet/queue-stl-clr.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ helpviewer_keywords: ["<queue> header [STL/CLR]", "queue class [STL/CLR]", "<cli
1010

1111
The template class describes an object that controls a varying length sequence of elements that has first-in first-out access. Use the container adapter `queue` to manage an underlying container as a queue.
1212

13-
In the description below, `GValue` is the same as *`Value`* unless the latter is a ref type, in which case it's `Value^`. Similarly, `GContainer` is the same as *`Container`* unless the latter is a ref type, in which case it's `Container^`.
13+
In the following description, `GValue` is the same as *`Value`* unless the latter is a ref type, in which case it's `Value^`. Similarly, `GContainer` is the same as *`Container`* unless the latter is a ref type, in which case it's `Container^`.
1414

1515
## Syntax
1616

@@ -162,7 +162,7 @@ reference back();
162162

163163
### Remarks
164164

165-
The member function returns a reference to the last element of the controlled sequence, which must be non-empty. You use it to access the last element, when you know one exists.
165+
The member function returns a reference to the last element of the controlled sequence, which must be nonempty. You use it to access the last element, when you know one exists.
166166

167167
### Example
168168

@@ -215,7 +215,7 @@ property value_type back_item;
215215

216216
### Remarks
217217

218-
The property accesses the last element of the controlled sequence, which must be non-empty. You use it to read or write the last element, when you know one exists.
218+
The property accesses the last element of the controlled sequence, which must be nonempty. You use it to read or write the last element, when you know one exists.
219219

220220
### Example
221221

@@ -470,7 +470,7 @@ reference front();
470470

471471
### Remarks
472472

473-
The member function returns a reference to the first element of the controlled sequence, which must be non-empty. You use it to access the first element, when you know one exists.
473+
The member function returns a reference to the first element of the controlled sequence, which must be nonempty. You use it to access the first element, when you know one exists.
474474

475475
### Example
476476

@@ -523,7 +523,7 @@ property value_type front_item;
523523

524524
### Remarks
525525

526-
The property accesses the first element of the controlled sequence, which must be non-empty. You use it to read or write the first element, when you know one exists.
526+
The property accesses the first element of the controlled sequence, which must be nonempty. You use it to read or write the first element, when you know one exists.
527527

528528
### Example
529529

@@ -796,7 +796,7 @@ void pop();
796796

797797
### Remarks
798798

799-
Removes the first element of the controlled sequence, which must be non-empty.
799+
Removes the first element of the controlled sequence, which must be nonempty.
800800

801801
### Example
802802

0 commit comments

Comments
 (0)