Skip to content

Commit ffa6d00

Browse files
authored
Merge pull request #4960 from Rageking8/fix-built-in-operators-toc-yml
Fix built-in operators toc yml
2 parents 2bf26aa + ebaeea0 commit ffa6d00

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

docs/cpp/left-shift-and-right-shift-operators-input-and-output.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
description: "Learn more about: Left shift and right shift operators ('<<' and '>>')"
3-
title: "Left shift and right shift operators ('<<' and '>>')"
2+
description: "Learn more about: Left shift and right shift operators: << and >>"
3+
title: "Left shift and right shift operators: << and >>"
44
ms.date: 12/09/2021
55
f1_keywords: ["<<", ">>"]
66
helpviewer_keywords: ["<< operator [C++], with specific objects", "left shift operators [C++]", "right shift operators [C++]", "bitwise-shift operators [C++]", ">> operator", "shift operators [C++]", "operators [C++], shift"]
7-
ms.assetid: 25fa0cbb-5fdd-4657-8745-b35f7d8f1606
87
---
9-
# Left shift and right shift operators (`<<` and `>>`)
8+
# Left shift and right shift operators: `<<` and `>>`
109

1110
The bitwise shift operators are the right-shift operator (**`>>`**), which moves the bits of an integer or enumeration type expression to the right, and the left-shift operator (**`<<`**), which moves the bits to the left. <sup>1</sup>
1211

@@ -218,5 +217,5 @@ The value of `E1 >> E2` is `E1` right-shifted `E2` bit positions. If `E1` has an
218217

219218
## See also
220219

221-
[Expressions with binary operators](../cpp/expressions-with-binary-operators.md)<br/>
220+
[Expressions with binary operators](../cpp/expressions-with-binary-operators.md)\
222221
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)

docs/cpp/subscript-operator.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
description: "Learn more about: Subscript Operator []"
3-
title: "Subscript Operator []"
2+
description: "Learn more about: Subscript Operator: []"
3+
title: "Subscript Operator: []"
44
ms.date: "11/04/2016"
55
f1_keywords: ["[]"]
66
helpviewer_keywords: ["operators [C++], subscript", "postfix operators [C++]", "[] operator", "subscript operator [C++], syntax"]
7-
ms.assetid: 69c31494-52da-4dd0-8bbe-6ccbfd50f197
87
---
9-
# Subscript Operator []
8+
# Subscript Operator: `[]`
109

1110
## Syntax
1211

@@ -98,8 +97,8 @@ The subscript operator is commutative. Therefore, the expressions *array*[*index
9897

9998
## See also
10099

101-
[Postfix Expressions](../cpp/postfix-expressions.md)<br/>
102-
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
103-
[Arrays](../cpp/arrays-cpp.md)<br/>
104-
[One-Dimensional Arrays](../c-language/one-dimensional-arrays.md)<br/>
105-
[Multidimensional Arrays](../c-language/multidimensional-arrays-c.md)<br/>
100+
[Postfix Expressions](../cpp/postfix-expressions.md)\
101+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
102+
[Arrays](../cpp/arrays-cpp.md)\
103+
[One-Dimensional Arrays](../c-language/one-dimensional-arrays.md)\
104+
[Multidimensional Arrays](../c-language/multidimensional-arrays-c.md)

docs/cpp/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ items:
160160
href: ../cpp/function-call-operator-parens.md
161161
- name: "Indirection operator: *"
162162
href: ../cpp/indirection-operator-star.md
163-
- name: Left shift and right shift operators (>> and <<)
163+
- name: "Left shift and right shift operators: << and >>"
164164
href: ../cpp/left-shift-and-right-shift-operators-input-and-output.md
165165
- name: "Logical AND operator: &&"
166166
href: ../cpp/logical-and-operator-amp-amp.md
@@ -188,7 +188,7 @@ items:
188188
href: ../cpp/scope-resolution-operator.md
189189
- name: sizeof operator
190190
href: ../cpp/sizeof-operator.md
191-
- name: "Subscript operator:"
191+
- name: "Subscript operator: []"
192192
href: ../cpp/subscript-operator.md
193193
- name: typeid operator
194194
href: ../cpp/typeid-operator.md

0 commit comments

Comments
 (0)