Skip to content

Commit b50d2bd

Browse files
authored
Merge pull request #5403 from Rageking8/remove-backslash-in-backticked-terms
Remove backslash in backticked terms
2 parents 3204ac3 + 2f989da commit b50d2bd

File tree

8 files changed

+17
-18
lines changed

8 files changed

+17
-18
lines changed

docs/mfc/reference/cwinapp-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ HCURSOR LoadOEMCursor(UINT nIDCursor) const;
961961
### Parameters
962962

963963
*nIDCursor*<br/>
964-
An **OCR_** manifest constant identifier that specifies a predefined Windows cursor. You must have `#define OEMRESOURCE` before `#include \<afxwin.h>` to gain access to the **OCR_** constants in WINDOWS.H.
964+
An **OCR_** manifest constant identifier that specifies a predefined Windows cursor. You must have `#define OEMRESOURCE` before `#include <afxwin.h>` to gain access to the **OCR_** constants in WINDOWS.H.
965965

966966
### Return Value
967967

@@ -988,7 +988,7 @@ HICON LoadOEMIcon(UINT nIDIcon) const;
988988
### Parameters
989989

990990
*nIDIcon*<br/>
991-
An **OIC_** manifest constant identifier that specifies a predefined Windows icon. You must have `#define OEMRESOURCE` before `#include \<afxwin.h>` to access the **OIC_** constants in WINDOWS.H.
991+
An **OIC_** manifest constant identifier that specifies a predefined Windows icon. You must have `#define OEMRESOURCE` before `#include <afxwin.h>` to access the **OIC_** constants in WINDOWS.H.
992992

993993
### Return Value
994994

docs/parallel/amp/graphics-cpp-amp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
description: "Learn more about: Graphics (C++ AMP)"
32
title: "Graphics (C++ AMP)"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: Graphics (C++ AMP)"
4+
ms.date: 11/04/2016
55
---
66
# Graphics (C++ AMP)
77

@@ -139,7 +139,7 @@ There are limits on the size of each dimension of the `texture` object, as shown
139139

140140
### Reading from Texture Objects
141141

142-
You can read from a `texture` object by using [texture::operator\[\]](reference/texture-class.md#operator_at), [texture::operator() Operator](reference/texture-class.md#operator_call), or [texture::get Method](reference/texture-class.md#get). The two operators return a value, not a reference. Therefore, you cannot write to a `texture` object by using `texture::operator\[\]`.
142+
You can read from a `texture` object by using [texture::operator\[\]](reference/texture-class.md#operator_at), [texture::operator() Operator](reference/texture-class.md#operator_call), or [texture::get Method](reference/texture-class.md#get). The two operators return a value, not a reference. Therefore, you cannot write to a `texture` object by using `texture::operator[]`.
143143

144144
```cpp
145145
void readTexture() {

docs/standard-library/basic-istream-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: basic_istream Class"
32
title: "basic_istream Class"
3+
description: "Learn more about: basic_istream Class"
44
ms.date: 06/10/2022
55
f1_keywords: ["istream/std::basic_istream", "istream/std::basic_istream::gcount", "istream/std::basic_istream::get", "istream/std::basic_istream::getline", "istream/std::basic_istream::", "istream/std::basic_istream::peek", "istream/std::basic_istream::putback", "istream/std::basic_istream::read", "istream/std::basic_istream::readsome", "istream/std::basic_istream::seekg", "istream/std::basic_istream::sentry", "istream/std::basic_istream::swap", "istream/std::basic_istream::sync", "istream/std::basic_istream::tellg", "istream/std::basic_istream::unget"]
66
helpviewer_keywords: ["std::basic_istream [C++]", "std::basic_istream [C++], gcount", "std::basic_istream [C++], get", "std::basic_istream [C++], getline", "std::basic_istream [C++], OVERWRITE", "std::basic_istream [C++], peek", "std::basic_istream [C++], putback", "std::basic_istream [C++], read", "std::basic_istream [C++], readsome", "std::basic_istream [C++], seekg", "std::basic_istream [C++], sentry", "std::basic_istream [C++], swap", "std::basic_istream [C++], sync", "std::basic_istream [C++], tellg", "std::basic_istream [C++], unget"]
@@ -410,7 +410,7 @@ Type 'abcdef': abcdef
410410
def
411411
```
412412

413-
## <a name="op_gt_gt"></a> `basic\_istream::operator>>`
413+
## <a name="op_gt_gt"></a> `basic_istream::operator>>`
414414

415415
Calls a function on the input stream or reads formatted data from the input stream.
416416

@@ -451,7 +451,7 @@ The stream (`*this`).
451451

452452
### Remarks
453453

454-
The `<istream>` header also defines several global extraction operators. For more information, see [`operator>> (\<istream>)`](../standard-library/istream-operators.md#op_gt_gt).
454+
The `<istream>` header also defines several global extraction operators. For more information, see [`operator>> (<istream>)`](../standard-library/istream-operators.md#op_gt_gt).
455455

456456
The first member function ensures that an expression of the form `istr >> ws` calls `ws(istr)`, and then returns `*this`. For more information, see [`ws`](../standard-library/istream-functions.md#ws).
457457

docs/standard-library/ctype-char-class.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
description: "Learn more about: ctype<char> Class"
32
title: "ctype<char> Class"
4-
ms.date: "11/04/2016"
3+
description: "Learn more about: ctype<char> Class"
4+
ms.date: 11/04/2016
55
f1_keywords: ["ctype<char>", "locale/std::ctype<char>"]
66
helpviewer_keywords: ["ctype<char> class"]
7-
ms.assetid: ee30acb4-a743-405e-b3d4-13602092da84
87
---
98
# `ctype<char>` Class
109

11-
The class is an explicit specialization of class template `ctype\<CharType>` to type **`char`**, describing an object that can serve as a locale facet to characterize various properties of a character of type **`char`**.
10+
The class is an explicit specialization of class template `ctype<CharType>` to type **`char`**, describing an object that can serve as a locale facet to characterize various properties of a character of type **`char`**.
1211

1312
## Syntax
1413

docs/standard-library/hash-map-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ The position just beyond the last element to be copied from a `hash_map`.
15261526
15271527
The first `insert` member function returns a pair whose `bool` component returns `true` if an insertion was made and `false` if the `hash_map` already contained an element whose key had an equivalent value in the ordering, and whose iterator component returns the address where a new element was inserted or where the element was already located.
15281528
1529-
To access the iterator component of a pair `pr` returned by this member function, use `pr.first`, and to dereference it, use `(pr.first)`. To access the **`bool`** component of a pair `pr` returned by this member function, use `pr.second`, and to dereference it, use `\(pr.second)`.
1529+
To access the iterator component of a pair `pr` returned by this member function, use `pr.first`, and to dereference it, use `(pr.first)`. To access the **`bool`** component of a pair `pr` returned by this member function, use `pr.second`, and to dereference it, use `(pr.second)`.
15301530
15311531
The second `insert` member function, the hint version, returns an iterator that points to the position where the new element was inserted into the `hash_map`.
15321532

docs/standard-library/regex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ To modify the details of the grammar of regular expressions, write a class that
8181
|[`operator==`](../standard-library/regex-operators.md#op_eq_eq)|Comparison of various objects, equal.|
8282
|[`operator!=`](../standard-library/regex-operators.md#op_neq)|Comparison of various objects, not equal.|
8383
|[`operator<`](../standard-library/regex-operators.md#op_lt)|Comparison of various objects, less than.|
84-
|[`operator\<=`](../standard-library/regex-operators.md#op_gt_eq)|Comparison of various objects, less than or equal.|
84+
|[`operator<=`](../standard-library/regex-operators.md#op_gt_eq)|Comparison of various objects, less than or equal.|
8585
|[`operator>`](../standard-library/regex-operators.md#op_gt)|Comparison of various objects, greater than.|
8686
|[`operator>=`](../standard-library/regex-operators.md#op_gt_eq)|Comparison of various objects, greater than or equal.|
8787
|[`operator<<`](../standard-library/regex-operators.md#op_lt_lt)|Inserts a `sub_match` in a stream.|

docs/standard-library/scoped-allocator-adaptor-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Three types are defined for the sake of exposition:
6767
6868
|Name|Description|
6969
|----------|-----------------|
70-
|[scoped_allocator_adaptor::rebind Struct](#rebind_struct)|Defines the type `Outer::rebind\<Other>::other` as a synonym for `scoped_allocator_adaptor\<Other, Inner...>`.|
70+
|[scoped_allocator_adaptor::rebind Struct](#rebind_struct)|Defines the type `Outer::rebind<Other>::other` as a synonym for `scoped_allocator_adaptor<Other, Inner...>`.|
7171
7272
### Methods
7373
@@ -277,7 +277,7 @@ A reference to the stored object of type `outer_allocator_type`.
277277

278278
## <a name="rebind_struct"></a> scoped_allocator_adaptor::rebind Struct
279279

280-
Defines the type `Outer::rebind\<Other>::other` as a synonym for `scoped_allocator_adaptor\<Other, Inner...>`.
280+
Defines the type `Outer::rebind<Other>::other` as a synonym for `scoped_allocator_adaptor<Other, Inner...>`.
281281

282282
struct rebind{
283283
typedef Other_traits::rebind\<Other>

docs/standard-library/string-view.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "<string_view>"
33
description: "Overview of `basic_string_view`, which refers to a constant contiguous sequence of char-like objects."
4-
ms.date: "9/4/2020"
4+
ms.date: 9/4/2020
55
helpviewer_keywords: ["string_view header"]
66
---
77
# `<string_view>`
@@ -37,7 +37,7 @@ The `<string_view>` operators can compare `string_view` objects to objects of an
3737
|[`operator==`](../standard-library/string-view-operators.md#op_eq_eq)|Tests if the object on the left side of the operator is equal to the object on the right side.|
3838
|[`operator<`](../standard-library/string-view-operators.md#op_lt)|Tests if the object on the left side of the operator is less than to the object on the right side.|
3939
|[`operator<=`](../standard-library/string-view-operators.md#op_lt_eq)|Tests if the object on the left side of the operator is less than or equal to the object on the right side.|
40-
|[`operator<\<`](../standard-library/string-view-operators.md#op_lt_lt)|A template function that inserts a `string_view` into an output stream.|
40+
|[`operator<<`](../standard-library/string-view-operators.md#op_lt_lt)|A template function that inserts a `string_view` into an output stream.|
4141
|[`operator>`](../standard-library/string-view-operators.md#op_gt)|Tests if the object on the left side of the operator is greater than to the object on the right side.|
4242
|[`operator>=`](../standard-library/string-view-operators.md#op_gt_eq)|Tests if the object on the left side of the operator is greater than or equal to the object on the right side.|
4343

0 commit comments

Comments
 (0)