Skip to content

Commit a81adc8

Browse files
author
3836425+corob-msft@users.noreply.github.com
committed
Bulk fix <, >, and .period; entities
1 parent 1fe3c24 commit a81adc8

File tree

95 files changed

+312
-312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+312
-312
lines changed

docs/assembler/masm/dot-erridn.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
description: "Learn more about: .ERRIDN, .ERRIDNI"
3-
title: ".ERRIDN, .ERRIDNI"
2+
description: "Learn more about: `.ERRIDN`, `.ERRIDNI`"
3+
title: "'.ERRIDN', '.ERRIDNI'"
44
ms.date: "05/23/2019"
55
f1_keywords: [".ERRIDN", ".ERRIDNI"]
66
helpviewer_keywords: [".ERRIDN directive", ".ERRIDNI directive"]
77
ms.assetid: 89507db3-7d40-4a5e-a378-24d30feda9d1
88
---
9-
# .ERRIDN, .ERRIDNI
9+
# `.ERRIDN`, `.ERRIDNI`
1010

1111
Generates an error if the text items are identical.
1212

1313
## Syntax
1414

15-
> **.ERRIDN** *textitem1*__,__ *textitem2*__,__ *message*\
16-
> **.ERRIDNI** *textitem1*__,__ *textitem2*__,__ *message*
15+
> **`.ERRIDN`** *textitem1*__,__ *textitem2*__,__ *message*\
16+
> **`.ERRIDNI`** *textitem1*__,__ *textitem2*__,__ *message*
1717
1818
## Remarks
1919

20-
If **.ERRIDNI** is given, the comparison is case insensitive.
20+
If **`.ERRIDNI`** is given, the comparison is case insensitive.
2121

2222
## See also
2323

docs/assembler/masm/ml-nonfatal-error-a2219.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.assetid: 5ebc2f40-e47e-4f8e-b7b9-960b9cfc9f6d
1313
1414
## Remarks
1515

16-
The operand for [.ALLOCSTACK](dot-allocstack.md) and [.SAVEREG](dot-savereg.md) must be a multiple of 8. The operand for [.SAVEXMM128](dot-savexmm128.md) and [.SETFRAME](dot-setframe.md) must be a multiple of 16.
16+
The operand for [`.ALLOCSTACK`](dot-allocstack.md) and [`.SAVEREG`](dot-savereg.md) must be a multiple of 8. The operand for [`.SAVEXMM128`](dot-savexmm128.md) and [`.SETFRAME`](dot-setframe.md) must be a multiple of 16.
1717

1818
## See also
1919

docs/atl/reference/cadapt-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ operator T&();
116116

117117
A reference to `m_T`.
118118

119-
## <a name="operator_lt"></a> CAdapt::operator &lt;
119+
## <a name="operator_lt"></a> `CAdapt::operator <`
120120

121121
Compares an object of the adapted type with [m_T](#m_t).
122122

docs/c-language/bitwise-shift-operators.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ ms.assetid: d0485785-5c72-47e1-a7c0-0adde03ade23
77
---
88
# Bitwise Shift Operators
99

10-
The shift operators shift their first operand left (**&lt;&lt;**) or right (**>>**) by the number of positions the second operand specifies.
10+
The shift operators shift their first operand left (**`<<`**) or right (**`>>`**) by the number of positions the second operand specifies.
1111

1212
## Syntax
1313

1414
*shift-expression*:<br/>
1515
&nbsp;&nbsp;&nbsp;&nbsp;*additive-expression*<br/>
16-
&nbsp;&nbsp;&nbsp;&nbsp;*shift-expression* **&lt;&lt;** *additive-expression*<br/>
17-
&nbsp;&nbsp;&nbsp;&nbsp;*shift-expression* **>>** *additive-expression*
16+
&nbsp;&nbsp;&nbsp;&nbsp;*shift-expression* **`<<`** *additive-expression*<br/>
17+
&nbsp;&nbsp;&nbsp;&nbsp;*shift-expression* **`>>`** *additive-expression*
1818

1919
Both operands must be integral values. These operators perform the usual arithmetic conversions; the type of the result is the type of the left operand after conversion.
2020

docs/c-language/c-relational-and-equality-operators.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ The binary relational and equality operators compare their first operand to thei
1313

1414
*relational-expression*:<br/>
1515
&nbsp;&nbsp;&nbsp;&nbsp;*shift-expression*<br/>
16-
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **&lt;** *shift-expression*<br/>
17-
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **>** *shift-expression*<br/>
18-
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **&lt;=** *shift-expression*<br/>
19-
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **>=** *shift-expression*
16+
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **`<`** *shift-expression*<br/>
17+
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **`>`** *shift-expression*<br/>
18+
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **`<=`** *shift-expression*<br/>
19+
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression* **`>=`** *shift-expression*
2020

2121
*equality-expression*:<br/>
2222
&nbsp;&nbsp;&nbsp;&nbsp;*relational-expression*<br/>
@@ -27,10 +27,10 @@ The relational and equality operators test the following relationships:
2727

2828
|Operator|Relationship Tested|
2929
|--------------|-------------------------|
30-
|**&lt;**|First operand less than second operand|
31-
|**>**|First operand greater than second operand|
32-
|**&lt;=**|First operand less than or equal to second operand|
33-
|**>=**|First operand greater than or equal to second operand|
30+
|**`<`**|First operand less than second operand|
31+
|**`>`**|First operand greater than second operand|
32+
|**`<=`**|First operand less than or equal to second operand|
33+
|**`>=`**|First operand greater than or equal to second operand|
3434
|**==**|First operand equal to second operand|
3535
|**!=**|First operand not equal to second operand|
3636

docs/c-runtime-library/reference/strtod-strtod-l-wcstod-wcstod-l.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ The UCRT versions of these functions don't support conversion of Fortran-style (
106106

107107
|Routine|Required header|
108108
|-------------|---------------------|
109-
|**strtod**, **_strtod_l**|C: &lt;stdlib.h> C++: &lt;cstdlib> or &lt;stdlib.h> |
110-
|**wcstod**, **_wcstod_l**|C: &lt;stdlib.h> or &lt;wchar.h> C++: &lt;cstdlib>, &lt;stdlib.h> or &lt;wchar.h> |
109+
|**strtod**, **_strtod_l**|C: `<stdlib.h>` C++: `<cstdlib>` or `<stdlib.h>` |
110+
|**wcstod**, **_wcstod_l**|C: `<stdlib.h>` or `<wchar.h>` C++: `<cstdlib>`, `<stdlib.h>`, or `<wchar.h>` |
111111

112112
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
113113

docs/c-runtime-library/reference/strtof-strtof-l-wcstof-wcstof-l.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ The UCRT versions of these functions do not support conversion of Fortran-style
8585

8686
|Routine|Required header|
8787
|-------------|---------------------|
88-
|**strtof**, **_strtof_l**|C: \<stdlib.h> C++: &lt;cstdlib> or \<stdlib.h>|
89-
|**wcstof**, **_wcstof_l**|C: \<stdlib.h> or \<wchar.h> C++: &lt;cstdlib>, \<stdlib.h> or \<wchar.h>|
88+
|**strtof**, **_strtof_l**|C: \<stdlib.h> C++: \<cstdlib> or \<stdlib.h>|
89+
|**wcstof**, **_wcstof_l**|C: \<stdlib.h> or \<wchar.h> C++: \<cstdlib>, \<stdlib.h> or \<wchar.h>|
9090

9191
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
9292

docs/code-quality/quick-start-code-analysis-for-c-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Visual Studio includes these standard sets of rules for native code:
3838
| **C++ Core Check Function Rules** | These rules enforce checks related to [functions from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#f-functions). |
3939
| **C++ Core Check GSL Rules** | These rules enforce checks related to the [Guidelines Support Library from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#S-gsl). |
4040
| **C++ Core Check Lifetime Rules** | These rules enforce the [Lifetime profile of the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#prolifetime-lifetime-safety-profile). |
41-
| **C++ Core Check Owner Pointer Rules** | These rules enforce resource-management checks related to [owner&lt;T&gt; from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). |
41+
| **C++ Core Check Owner Pointer Rules** | These rules enforce resource-management checks related to [`owner<T>` from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). |
4242
| **C++ Core Check Raw Pointer Rules** | These rules enforce resource-management checks related to [raw pointers from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). |
4343
| **C++ Core Check Rules** | These rules enforce a subset of the checks from the [C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#c-core-guidelines). Use this ruleset to include all of the C++ Core Check rules except the Enum and Experimental rulesets. |
4444
| **C++ Core Check Shared Pointer Rules** | These rules enforce resource-management checks related to [types with shared pointer semantics from the C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#r-resource-management). |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 25fa0cbb-5fdd-4657-8745-b35f7d8f1606
88
---
99
# Left Shift and Right Shift Operators (`<<` and `>>`)
1010

11-
The bitwise shift operators are the right-shift operator (**&gt;&gt;**), which moves the bits of *shift-expression* to the right, and the left-shift operator (**&lt;&lt;**), which moves the bits of *shift-expression* to the left. <sup>1</sup>
11+
The bitwise shift operators are the right-shift operator (**`>>`**), which moves the bits of *shift-expression* to the right, and the left-shift operator (**`<<`**), which moves the bits of *shift-expression* to the left. <sup>1</sup>
1212

1313
## Syntax
1414

docs/cppcx/platform-agile-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ void Release() throw();
185185

186186
The current Agile object's underlying object and context are discarded, if they exist, and then the value of the Agile object is set to null.
187187

188-
## <a name="operator-arrow"></a> Agile::operator-&gt; Operator
188+
## <a name="operator-arrow"></a> `Agile::operator->` Operator
189189

190190
Retrieves a handle to the object represented by the current Agile object.
191191

0 commit comments

Comments
 (0)