Skip to content

Commit 3ac1e2d

Browse files
authored
Remove escapes at the end of unordered list entries
1 parent ca34523 commit 3ac1e2d

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

docs/c-runtime-library/ismbc-routines.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ ms.assetid: b8995391-7857-4ac3-9a1e-de946eb4464d
99

1010
Each `_ismbc` routine tests a given multibyte character `c` for a particular condition.
1111

12-
- [`_ismbcalnum`, `_ismbcalnum_l`, `_ismbcalpha`, `_ismbcalpha_l`, `_ismbcdigit`, `_ismbcdigit_l`](./reference/ismbcalnum-functions.md)\
13-
- [`_ismbcl0`, `_ismbcl0_l`, `_ismbcl1`, `_ismbcl1_l`, `_ismbcl2`, `_ismbcl2_l`](./reference/ismbcl0-ismbcl0-l-ismbcl1-ismbcl1-l-ismbcl2-ismbcl2-l.md)\
14-
- [`_ismbcgraph`, `_ismbcgraph_l`, `_ismbcprint`, `_ismbcprint_l`, `_ismbcpunct`, `_ismbcpunct_l`, `_ismbcblank`, `_ismbcblank_l`, `_ismbcspace`, `_ismbcspace_l`](./reference/ismbcgraph-functions.md)\
15-
- [`_ismbclegal`, `_ismbclegal_l`, `_ismbcsymbol`, `_ismbcsymbol_l`](./reference/ismbclegal-ismbclegal-l-ismbcsymbol-ismbcsymbol-l.md)\
16-
- [`_ismbchira`, `_ismbchira_l`, `_ismbckata`, `_ismbckata_l`](./reference/ismbchira-ismbchira-l-ismbckata-ismbckata-l.md)\
12+
- [`_ismbcalnum`, `_ismbcalnum_l`, `_ismbcalpha`, `_ismbcalpha_l`, `_ismbcdigit`, `_ismbcdigit_l`](./reference/ismbcalnum-functions.md)
13+
- [`_ismbcl0`, `_ismbcl0_l`, `_ismbcl1`, `_ismbcl1_l`, `_ismbcl2`, `_ismbcl2_l`](./reference/ismbcl0-ismbcl0-l-ismbcl1-ismbcl1-l-ismbcl2-ismbcl2-l.md)
14+
- [`_ismbcgraph`, `_ismbcgraph_l`, `_ismbcprint`, `_ismbcprint_l`, `_ismbcpunct`, `_ismbcpunct_l`, `_ismbcblank`, `_ismbcblank_l`, `_ismbcspace`, `_ismbcspace_l`](./reference/ismbcgraph-functions.md)
15+
- [`_ismbclegal`, `_ismbclegal_l`, `_ismbcsymbol`, `_ismbcsymbol_l`](./reference/ismbclegal-ismbclegal-l-ismbcsymbol-ismbcsymbol-l.md)
16+
- [`_ismbchira`, `_ismbchira_l`, `_ismbckata`, `_ismbckata_l`](./reference/ismbchira-ismbchira-l-ismbckata-ismbckata-l.md)
1717
- [`_ismbclower`, `_ismbclower_l`, `_ismbcupper`, `_ismbcupper_l`](./reference/ismbclower-ismbclower-l-ismbcupper-ismbcupper-l.md)
1818

1919
## Remarks

docs/c-runtime-library/language-strings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The Microsoft C run-time library implementation also supports these language str
8282

8383
## See also
8484

85-
- [Locale names, Languages, and Country/Region strings](./locale-names-languages-and-country-region-strings.md)\
86-
- [Country/Region strings](./country-region-strings.md)\
87-
- [`setlocale`, `_wsetlocale`](./reference/setlocale-wsetlocale.md)\
85+
- [Locale names, Languages, and Country/Region strings](./locale-names-languages-and-country-region-strings.md)
86+
- [Country/Region strings](./country-region-strings.md)
87+
- [`setlocale`, `_wsetlocale`](./reference/setlocale-wsetlocale.md)
8888
- [`_create_locale`, `_wcreate_locale`](./reference/create-locale-wcreate-locale.md)

docs/cpp/casting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ int main() {
7272
7373
This section covers the following topics:
7474
75-
- [Casting operators](../cpp/casting-operators.md)\
75+
- [Casting operators](../cpp/casting-operators.md)
7676
- [Run-time type information](../cpp/run-time-type-information.md)
7777
7878
## See also

docs/cpp/modules-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ A module partition is similar to a module, except:
115115
- It shares ownership of all declarations in the entire module.
116116
- All names exported by partition interface files are imported and exported by the primary interface file.
117117
- A partition's name must begin with the module name followed by a colon (`:`).
118-
- Declarations in any of the partitions are visible within the entire module.\
118+
- Declarations in any of the partitions are visible within the entire module.
119119
- No special precautions are needed to avoid one-definition-rule (ODR) errors. You can declare a name (function, class, and so on) in one partition and define it in another.
120120

121121
A partition implementation file begins like this, and is an internal partition from a C++ standards perspective:

docs/ide/navigate-code-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,6 @@ You can navigate to the definition of a type in a file, or to type members, by u
124124

125125
## See also
126126

127-
- [Read and understand C++ code](read-and-understand-code-cpp.md)\
128-
- [Edit and refactor C++ code](read-and-understand-code-cpp.md)\
127+
- [Read and understand C++ code](read-and-understand-code-cpp.md)
128+
- [Edit and refactor C++ code](read-and-understand-code-cpp.md)
129129
- [Collaborate with Live Share for C++](live-share-cpp.md)

docs/mfc/windows-sockets-using-class-casyncsocket.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ Despite these issues, class `CAsyncSocket` may be the right choice for you if yo
8989

9090
For more information, see:
9191

92-
- [Windows Sockets: Background](../mfc/windows-sockets-background.md)\
93-
- [Windows Sockets: Stream Sockets](../mfc/windows-sockets-stream-sockets.md)\
92+
- [Windows Sockets: Background](../mfc/windows-sockets-background.md)
93+
- [Windows Sockets: Stream Sockets](../mfc/windows-sockets-stream-sockets.md)
9494
- [Windows Sockets: Datagram Sockets](../mfc/windows-sockets-datagram-sockets.md)
9595

9696
## See also

docs/sanitizers/asan-building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Stack frames are allocated in the heap and remain after functions return. The ru
111111
When building with ASan, the compiler replaces intrinsic functions (like `memset`) with function calls provided by the ASan runtime library (like `__asan_memset`) that complete the same operation but also provide memory safety checks. For user-mode ASan, the compiler and runtime are updated together because Visual Studio provides both. [Kernel-mode ASan (KASan)](/windows-hardware/drivers/devtest/kasan) is part of the Windows OS, so it updates on a different cadence than the compiler. To avoid issues with a new compiler using new intrinsics that the installed version of KASan doesn't support, link the compatibility library (`asan_compat.lib`) to avoid link-time issues. When using `asan_compat.lib`, the program behaves as though the unsupported ASan intrinsics aren't used. Linking with a newer runtime library that supports the new ASan intrinsics supersedes the versions provided by `asan_compat.lib`. This decision is made at link time, so it's imperative to link with the KASan library provided by the Windows SDK that matches the OS version you're targeting.
112112

113113
The following options are supported in Visual Studio 2022 17.14 Preview 2 and later:
114-
- To include this compatibility library as a default library, use the **`/fsanitize-address-asan-compat-lib`** compiler option. This option is automatically enabled when using **`/fsanitize=kernel-address`**.\
114+
- To include this compatibility library as a default library, use the **`/fsanitize-address-asan-compat-lib`** compiler option. This option is automatically enabled when using **`/fsanitize=kernel-address`**.
115115
- To opt-out of this compatibility library, use the **`/fno-sanitize-address-asan-compat-lib`** compiler option.
116116

117117
Using **`/fsanitize-address-asan-compat-lib`** to link a newer compiler with an older user-mode ASan runtime isn't currently supported.

docs/standard-library/wbuffer-convert-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ Conversion between a sequence of `Elem` values and multibyte sequences is perfor
3636
3737
An object of this class template stores:
3838
39-
- A pointer to its underlying byte stream buffer.\
39+
- A pointer to its underlying byte stream buffer.
4040
- A pointer to an allocated conversion facet object, which is freed when the `wbuffer_convert` is destroyed.

0 commit comments

Comments
 (0)