Skip to content

Commit 6c828fb

Browse files
authored
Merge pull request #5351 from Rageking8/clean-up-extraneous-backticks
Clean up extraneous backticks
2 parents c25f573 + 7017b26 commit 6c828fb

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

docs/cppcx/crt-functions-not-supported-in-universal-windows-platform-apps.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
---
22
title: "CRT functions not supported in Universal Windows Platform apps"
33
description: "Reference guide to CRT functions not supported in Universal Windows Platform apps."
4-
ms.date: "04/16/2020"
5-
ms.assetid: cbfc957d-6c60-48f4-97e3-1ed8526743b4
4+
ms.date: 04/16/2020
65
---
76
# CRT functions not supported in Universal Windows Platform apps
87

@@ -47,4 +46,4 @@ Both the previously mentioned APIs and the following APIs are unavailable in Win
4746
|`_chdir` `_wchdir` `_getcwd` `_getdcwd` `_wgetcwd` `_wgetdcwd`|The concept of a working directory doesn't apply to Windows 8.x Store apps.|Use full paths instead.|
4847
|`_isleadbyte_l` `_ismbbalnum`, `_ismbbalnum_l`, `_ismbbalpha`, `_ismbbalpha` `_ismbbalpha_l` `_ismbbgraph` `_ismbbgraph_l` `_ismbbkalnum` `_ismbbkalnum_l` `_ismbbkana` `_ismbbkana_l` `_ismbbkprint` `_ismbbkprint_l` `_ismbbkpunct` `_ismbbkpunct_l` `_ismbblead` `_ismbblead_l` `_ismbbprint` `_ismbbprint_l` `_ismbbpunct` `_ismbbpunct_l` `_ismbbtrail` `_ismbbtrail_l` `_ismbslead` `_ismbslead_l` `_ismbstrail` `_ismbstrail_l` `_mbsdup` `isleadbyte`|Multi-byte strings are not supported in Windows 8.x Store apps.|Use Unicode strings instead.|
4948
|`_tzset`|Environment variables are not available to Windows 8.x Store apps.|No workaround.|
50-
|`_get_heap_handle`, `_heapmin`|The corresponding Win32 APIs are not supported in Windows 8.x Store apps. And, apps can no longer create private heaps.|No workaround. However, ``_get_heap_handle`` is available in the DEBUG CRT, for debugging purposes only.|
49+
|`_get_heap_handle`, `_heapmin`|The corresponding Win32 APIs are not supported in Windows 8.x Store apps. And, apps can no longer create private heaps.|No workaround. However, `_get_heap_handle` is available in the DEBUG CRT, for debugging purposes only.|

docs/mfc/reference/connection-maps.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: Connection Maps"
32
title: "Connection Maps"
4-
ms.date: "8/1/2023"
3+
description: "Learn more about: Connection Maps"
4+
ms.date: 8/1/2023
55
helpviewer_keywords: ["connection maps"]
66
---
77

@@ -261,7 +261,7 @@ For in-process connections, `TRUE` indicates that creating the connection should
261261
**Warning**: In general, it can't be predicted which connections are in-process and which connections are out-of-process, so it is recommended to always set this parameter to `TRUE`.
262262
263263
*`dwCookie`*\
264-
The connection identifier returned by ``AfxConnectionAdvise``.
264+
The connection identifier returned by `AfxConnectionAdvise`.
265265
266266
### Return value
267267

docs/sanitizers/asan-continue-on-error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ This sorting prioritizes memory safety issues that may be the most concerning. F
146146
147147
File: D:\a\_work\1\s\src\vctools\asan\llvm\compiler-rt\lib\asan\asan_malloc_win_thunk.cpp Unique call stacks: 1
148148
File: C:\Users\xxx\Desktop\COE\doublefree.cpp Unique call stacks: 1
149-
``````
149+
```
150150

151151
Finally, the report contains a summary of where the memory errors occurred:
152152

docs/standard-library/multiset-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ The stored object defines the member function:
12941294

12951295
which returns true if *x* strictly precedes *y* in the sort order.
12961296

1297-
Both [`key_compare`](#key_compare) and [`value_compare`](#value_compare) are synonyms for the template parameter ``Compare``. Both types are provided for the classes set and multiset, where they're identical, for compatibility with the classes map and multimap, where they're distinct.
1297+
Both [`key_compare`](#key_compare) and [`value_compare`](#value_compare) are synonyms for the template parameter `Compare`. Both types are provided for the classes set and multiset, where they're identical, for compatibility with the classes map and multimap, where they're distinct.
12981298

12991299
### Example
13001300

@@ -1381,7 +1381,7 @@ For more information on `Key`, see the Remarks section of the [`multiset` Class]
13811381

13821382
### Example
13831383

1384-
See the example for [`value_type`](#value_type) for an example of how to declare and use ``key_type``.
1384+
See the example for [`value_type`](#value_type) for an example of how to declare and use `key_type`.
13851385

13861386
## <a name="lower_bound"></a> `multiset::lower_bound`
13871387

0 commit comments

Comments
 (0)