Skip to content

Commit 9271243

Browse files
authored
Make built-in operators title consistent (#4963)
1 parent c748c53 commit 9271243

23 files changed

+69
-69
lines changed

docs/cpp/additive-operators-plus-and.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["+", "-"]
66
helpviewer_keywords: ["operators [C++], addition", "subtraction operator [C++], additive operators", "+ operator [C++], additive operators", "additive operators [C++]", "arithmetic operators [C++], additive operators", "- operator [C++], additive operators in C++"]
77
ms.assetid: d4afafe7-e201-4c69-a649-37f17756e784
88
---
9-
# Additive Operators: + and -
9+
# Additive Operators: `+` and `-`
1010

1111
## Syntax
1212

@@ -102,6 +102,6 @@ One of the operands can be of integral type, as long as it is the second operand
102102

103103
## See also
104104

105-
[Expressions with Binary Operators](../cpp/expressions-with-binary-operators.md)<br/>
106-
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
105+
[Expressions with Binary Operators](../cpp/expressions-with-binary-operators.md)\
106+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
107107
[C Additive Operators](../c-language/c-additive-operators.md)

docs/cpp/assignment-operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,6 @@ In ANSI C, the result of an assignment expression isn't an l-value. That means t
168168

169169
## See also
170170

171-
[Expressions with binary operators](../cpp/expressions-with-binary-operators.md)<br/>
172-
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
171+
[Expressions with binary operators](../cpp/expressions-with-binary-operators.md)\
172+
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
173173
[C assignment operators](../c-language/c-assignment-operators.md)

docs/cpp/bitwise-exclusive-or-operator-hat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["xor_cpp", "^"]
66
helpviewer_keywords: ["operators [C++], bitwise", "exclusive OR operator", "XOR operator", "bitwise operators [C++], OR operator", "^ operator", "OR operator [C++], bitwise exclusive", "operators [C++], logical"]
77
ms.assetid: f9185d85-65d5-4f64-a6d6-679758d52217
88
---
9-
# Bitwise exclusive OR operator: ^
9+
# Bitwise exclusive OR operator: `^`
1010

1111
## Syntax
1212

docs/cpp/bitwise-inclusive-or-operator-pipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ int main() {
4141

4242
## See also
4343

44-
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
44+
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
4545
[C bitwise operators](../c-language/c-bitwise-operators.md)

docs/cpp/comma-operator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["%2C"]
66
helpviewer_keywords: ["comma operator"]
77
ms.assetid: 38e0238e-19da-42ba-ae62-277bfdab6090
88
---
9-
# Comma Operator: ,
9+
# Comma Operator: `,`
1010

1111
Allows grouping two statements where one is expected.
1212

@@ -55,6 +55,6 @@ int main () {
5555

5656
## See also
5757

58-
[Expressions with Binary Operators](../cpp/expressions-with-binary-operators.md)<br/>
59-
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
58+
[Expressions with Binary Operators](../cpp/expressions-with-binary-operators.md)\
59+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
6060
[Sequential-Evaluation Operator](../c-language/sequential-evaluation-operator.md)

docs/cpp/conditional-operator-q.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ int main() {
6363

6464
## See also
6565

66-
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
66+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
6767
[Conditional-Expression Operator](../c-language/conditional-expression-operator.md)

docs/cpp/equality-operators-equal-equal-and-exclpt-equal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["!=", "==", "not_eq_cpp"]
66
helpviewer_keywords: ["!= operator", "equality operator", "not equal to comparison operator", "equality operator [C++], syntax", "== operator", "not_eq operator", "equal to operator"]
77
ms.assetid: ba4e9659-2392-4fb4-be5a-910a2a6df45a
88
---
9-
# Equality operators: == and !=
9+
# Equality operators: `==` and `!=`
1010

1111
## Syntax
1212

@@ -47,6 +47,6 @@ Equality operators can compare pointers to members of the same type. In such a c
4747

4848
## See also
4949

50-
[Expressions with binary operators](../cpp/expressions-with-binary-operators.md)<br/>
51-
[C++ built-in operators, precedence; and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
50+
[Expressions with binary operators](../cpp/expressions-with-binary-operators.md)\
51+
[C++ built-in operators, precedence; and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
5252
[C relational and equality operators](../c-language/c-relational-and-equality-operators.md)

docs/cpp/explicit-type-conversion-operator-parens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "11/04/2016"
55
helpviewer_keywords: ["explicit data type conversion operator", "conversions [C++], explicit", "operators [C++], explicit type conversion", "data type conversion [C++], explicit", "type conversion [C++], explicit conversions"]
66
ms.assetid: 54272006-5ffb-45ed-8283-27152ab97529
77
---
8-
# Explicit Type Conversion Operator: ()
8+
# Explicit Type Conversion Operator: `()`
99

1010
C++ allows explicit type conversion using syntax similar to the function-call syntax.
1111

@@ -117,5 +117,5 @@ Type definition within casts is illegal.
117117
118118
## See also
119119
120-
[Postfix Expressions](../cpp/postfix-expressions.md)<br/>
120+
[Postfix Expressions](../cpp/postfix-expressions.md)\
121121
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)

docs/cpp/function-call-operator-parens.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ helpviewer_keywords: ["( ) function call operator", "function calls, C++ functio
66
ms.assetid: 50c92e59-a4bf-415a-a6ab-d66c679ee80a
77
no-loc: [ opt ]
88
---
9-
# Function Call Operator: ()
9+
# Function Call Operator: `()`
1010

1111
A function call is a kind of *`postfix-expression`*, formed by an expression that evaluates to a function or callable object followed by the function-call operator, **`()`**. An object can declare an `operator ()` function, which provides function call semantics for the object.
1212

@@ -172,6 +172,6 @@ Functions can be called recursively. For more information about function declara
172172
173173
## See also
174174
175-
[Postfix expressions](../cpp/postfix-expressions.md)<br/>
176-
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
175+
[Postfix expressions](../cpp/postfix-expressions.md)\
176+
[C++ built-in operators, precedence, and associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
177177
[Function call](../c-language/function-call-c.md)

docs/cpp/indirection-operator-star.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.date: "11/04/2016"
55
helpviewer_keywords: ["* operator", "indirection operator", "operators [C++], indirection", "indirection operator [C++], syntax"]
66
ms.assetid: c50309e1-6c02-4184-9fcb-2e13c1f4ac03
77
---
8-
# Indirection Operator: *
8+
# Indirection Operator: `*`
99

1010
## Syntax
1111

@@ -15,7 +15,7 @@ ms.assetid: c50309e1-6c02-4184-9fcb-2e13c1f4ac03
1515

1616
## Remarks
1717

18-
The unary indirection operator (<strong>\*</strong>) dereferences a pointer; that is, it converts a pointer value to an l-value. The operand of the indirection operator must be a pointer to a type. The result of the indirection expression is the type from which the pointer type is derived. The use of the <strong>\*</strong> operator in this context is different from its meaning as a binary operator, which is multiplication.
18+
The unary indirection operator (**`*`**) dereferences a pointer; that is, it converts a pointer value to an l-value. The operand of the indirection operator must be a pointer to a type. The result of the indirection expression is the type from which the pointer type is derived. The use of the **`*`** operator in this context is different from its meaning as a binary operator, which is multiplication.
1919

2020
If the operand points to a function, the result is a function designator. If it points to a storage location, the result is an l-value designating the storage location.
2121

@@ -53,7 +53,7 @@ If the pointer value is invalid, the result is undefined. The following list inc
5353

5454
## See also
5555

56-
[Expressions with Unary Operators](../cpp/expressions-with-unary-operators.md)<br/>
57-
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)<br/>
58-
[Address-of Operator: &](../cpp/address-of-operator-amp.md)<br/>
56+
[Expressions with Unary Operators](../cpp/expressions-with-unary-operators.md)\
57+
[C++ Built-in Operators, Precedence and Associativity](../cpp/cpp-built-in-operators-precedence-and-associativity.md)\
58+
[Address-of Operator: &](../cpp/address-of-operator-amp.md)\
5959
[Indirection and Address-of Operators](../c-language/indirection-and-address-of-operators.md)

0 commit comments

Comments
 (0)