Skip to content

Commit 83b2aad

Browse files
author
3836425+corob-msft@users.noreply.github.com
committed
Bulk fix entity & part 3
1 parent 236d2f1 commit 83b2aad

10 files changed

Lines changed: 19 additions & 19 deletions

docs/assembler/masm/operator-bitwise-and.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
description: "Learn more about: operator &"
3-
title: "operator &"
2+
description: "Learn more about: operator &"
3+
title: "operator &"
44
ms.date: "12/17/2019"
55
f1_keywords: ["&", "operator &"]
66
helpviewer_keywords: ["& operator, syntax", "AND operator", "& operator"]
77
ms.assetid: f3c51a54-48ba-4b99-afed-5c45177bf694
88
---
9-
# operator &
9+
# operator `&`
1010

1111
Bitwise **AND**. Used only within [.IF](dot-if.md), [.WHILE](dot-while.md), or [.REPEAT](dot-repeat.md) blocks and evaluated at run time, not at assembly time.
1212

docs/assembler/masm/operator-logical-and-masm-run-time.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
description: "Learn more about: operator && (MASM Run Time)"
3-
title: "operator && (MASM Run Time)"
2+
description: "Learn more about: operator && (MASM Run Time)"
3+
title: "operator && (MASM Run Time)"
44
ms.date: "12/17/2019"
55
f1_keywords: ["operator &&"]
66
helpviewer_keywords: ["operator &&", "&& operator"]
77
ms.assetid: 0a633a40-114c-48f5-88ff-09bc8d9b281a
88
---
9-
# operator && (MASM Run Time)
9+
# operator `&&` (MASM Run Time)
1010

1111
Logical **AND**. Used only within [.IF](dot-if.md), [.WHILE](dot-while.md), or [.REPEAT](dot-repeat.md) blocks and evaluated at run time, not at assembly time.
1212

docs/atl/reference/cadapt-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ T m_T;
9292

9393
This **`public`** data member can be accessed directly or indirectly with [operator const T&](#operator_const_t_amp) and [operator T&](#operator_t_amp).
9494

95-
## <a name="operator_const_t_amp"></a> CAdapt::operator const T&amp;
95+
## <a name="operator_const_t_amp"></a> CAdapt::operator const T&
9696

9797
Returns a **`const`** reference to the [m_T](#m_t) member, allowing the adapter object to be treated as if it were an object of type *T*.
9898

@@ -104,7 +104,7 @@ operator const T&() const;
104104

105105
A **`const`** reference to `m_T`.
106106

107-
## <a name="operator_t_amp"></a> CAdapt::operator T&amp;
107+
## <a name="operator_t_amp"></a> CAdapt::operator T&
108108

109109
Returns a reference to the [m_T](#m_t) member, allowing the adapter object to be treated as if it were an object of type *T*.
110110

docs/atl/reference/ccomptrbase-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ bool operator!() const throw();
237237
238238
Returns true if the `CComHeapPtr` pointer is equal to NULL, false otherwise.
239239
240-
## <a name="operator_amp"></a> CComPtrBase::operator &amp;
240+
## <a name="operator_amp"></a> CComPtrBase::operator &
241241
242242
The & operator.
243243

docs/atl/reference/cheapptrbase-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ T* m_pData;
160160

161161
This member variable holds the pointer information.
162162

163-
## <a name="operator_amp"></a> CHeapPtrBase::operator &amp;
163+
## <a name="operator_amp"></a> CHeapPtrBase::operator &
164164

165165
The & operator.
166166

docs/atl/reference/cpatht-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ The string to append.
598598
599599
Returns the updated path.
600600
601-
## <a name="operator_const_stringtype_amp"></a> CPathT::operator const StringType &amp;
601+
## <a name="operator_const_stringtype_amp"></a> CPathT::operator const StringType &
602602
603603
This operator allows the object to be treated like a string.
604604
@@ -622,7 +622,7 @@ operator PCXSTR() const throw();
622622
623623
Returns a string representing the current path managed by this object.
624624
625-
## <a name="operator_stringtype_amp"></a> CPathT::operator StringType &amp;
625+
## <a name="operator_stringtype_amp"></a> CPathT::operator StringType &
626626
627627
This operator allows the object to be treated like a string.
628628

docs/code-quality/c26820.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ helpviewer_keywords: ["C26820"]
77
---
88
# C26820
99

10-
> Assigning by value when a const-reference would suffice, use const auto&amp; instead (p.9).
10+
> Assigning by value when a const-reference would suffice, use const auto& instead (p.9).
1111
1212
For more information, see [P.9: Don't waste time or space](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#p9-dont-waste-time-or-space) in the C++ Core Guidelines.
1313

docs/cpp/address-of-operator-amp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: "Address-of Operator: &amp;"
2+
title: "Address-of Operator: &"
33
description: "The address-of operator in the C++ language."
44
ms.date: 10/02/2020
55
f1_keywords: ["&"]
66
helpviewer_keywords: ["address-of operator (&)", "& operator", "& operator [C++], address-of operator"]
77
ms.assetid: 2828221a-15f6-4acc-87fe-25e34feebb88
88
---
9-
# Address-of Operator: &amp;
9+
# Address-of Operator: `&`
1010

1111
## Syntax
1212

docs/cpp/bitwise-and-operator-amp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: "Bitwise AND operator: &amp;"
2+
title: "Bitwise AND operator: &"
33
description: "The C++ standard language bitwise AND operator syntax and use."
44
ms.date: 07/23/2020
55
f1_keywords: ["bitand_cpp"]
66
helpviewer_keywords: ["AND operator", "bitwise operators [C++], AND operator", "& operator [C++], bitwise operators"]
77
ms.assetid: 76f40de3-c417-47b9-8a77-532f3fc990a5
88
---
9-
# Bitwise AND operator: &amp;
9+
# Bitwise AND operator: `&`
1010

1111
## Syntax
1212

docs/cpp/logical-and-operator-amp-amp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: "Logical AND Operator: &amp;&amp;"
2+
title: "Logical AND Operator: &&"
33
description: "The C++ standard language logical AND operator syntax and use."
44
ms.date: 07/23/2020
55
f1_keywords: ["&&", "and_cpp"]
66
helpviewer_keywords: ["logical AND operator", "AND operator", "&& operator"]
77
ms.assetid: 50cfa664-a8c4-4b31-9bab-2f80d7cd2d1f
88
---
9-
# Logical AND operator: &amp;&amp;
9+
# Logical AND operator: `&&`
1010

1111
## Syntax
1212

0 commit comments

Comments
 (0)