Skip to content

Commit 18833f2

Browse files
authored
Remove some stray trailing backticks
1 parent 0c67ffb commit 18833f2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/build/open-folder-projects-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ If you add the MinGW-W64 configuration, the JSON looks this:
105105
}
106106
```
107107

108-
Note the `environments` block. It defines properties that behave like environment variables and are available not only in the *CppProperties.json* file, but also in the other configuration files *task.vs.json* and *launch.vs.json*. The `Mingw64` configuration inherits the `mingw_w64` environment, and uses its `INCLUDE` property to specify the value for `includePath`. You can add other paths to this array property as needed.`
108+
Note the `environments` block. It defines properties that behave like environment variables and are available not only in the *CppProperties.json* file, but also in the other configuration files *task.vs.json* and *launch.vs.json*. The `Mingw64` configuration inherits the `mingw_w64` environment, and uses its `INCLUDE` property to specify the value for `includePath`. You can add other paths to this array property as needed.
109109

110110
The `intelliSenseMode` property is set to a value appropriate for GCC. For more information on all these properties, see [CppProperties schema reference](cppproperties-schema-reference.md).
111111

docs/mfc/reference/cmfcribboncategory-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The `CMFCRibbonTab` class draws ribbon categories. It is derived from [CMFCRibbo
9999
This following example demonstrates how to create a ribbon category and add a panel to it.
100100

101101
```cpp
102-
// Create a new ribbon category and get a pointer to it`
102+
// Create a new ribbon category and get a pointer to it
103103
CMFCRibbonCategory* pCategory = m_wndRibbonBar.AddCategory
104104
(_T("&Write"), // Category name
105105
IDB_WRITE, // Category small images (16 x 16)

docs/overview/cpp-conformance-improvements-2017.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ int main()
465465
// understand C++ and uses BitBlt, which results in a double-free later.
466466
f(A()); // C4606 'A': passing argument by value across native and managed
467467
// boundary requires valid copy constructor. Otherwise, the runtime
468-
// behavior is undefined.`
468+
// behavior is undefined.
469469
}
470470
```
471471
@@ -1629,7 +1629,7 @@ The standard C++ attribute [`[[deprecated]]`](../cpp/attributes.md) may be used
16291629
template <typename T>
16301630
using X = __declspec(deprecated("msg")) T; // C2760: syntax error:
16311631
// unexpected token '__declspec',
1632-
// expected 'type specifier'`
1632+
// expected 'type specifier'
16331633
```
16341634

16351635
To fix the error, change to code to the following (with the attribute placed before the '=' of the alias definition):
@@ -1678,7 +1678,7 @@ The following code now raises C4643:
16781678
namespace std {
16791679
template<typename T> class vector; // C4643: Forward declaring 'vector'
16801680
// in namespace std is not permitted
1681-
// by the C++ Standard`
1681+
// by the C++ Standard
16821682
}
16831683
```
16841684

docs/standard-library/iterator-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ Retrieves an iterator to the first element in a specified container.
159159

160160
```cpp
161161
template <class Container>
162-
auto begin(Container& cont) `
162+
auto begin(Container& cont)
163163
-> decltype(cont.begin());
164164

165165
template <class Container>
166-
auto begin(const Container& cont) `
166+
auto begin(const Container& cont)
167167
-> decltype(cont.begin());
168168

169169
template <class Ty, class Size>

0 commit comments

Comments
 (0)