Skip to content

Commit a1f64ac

Browse files
authored
Remove rogue space within backticked terms
1 parent 1a5be4b commit a1f64ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/c-runtime-library/find-memory-leaks-using-the-crt-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ _CrtMemCheckpoint( &s1 );
241241

242242
The `_CrtMemCheckpoint` function fills in the structure with a snapshot of the current memory state.
243243

244-
To output the contents of a `_CrtMemState` structure, pass the structure to the `_ CrtMemDumpStatistics` function:
244+
To output the contents of a `_CrtMemState` structure, pass the structure to the `_CrtMemDumpStatistics` function:
245245

246246
```cpp
247247
_CrtMemDumpStatistics( &s1 );

docs/c-runtime-library/reference/islower-iswlower-islower-l-iswlower-l.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The behavior of **`islower`** and **`_islower_l`** is undefined if *`c`* isn't E
5454
| TCHAR.H routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
5555
|---|---|---|---|
5656
| `_istlower` | **`islower`** | [`_ismbclower`](ismbclower-ismbclower-l-ismbcupper-ismbcupper-l.md) | **`iswlower`** |
57-
| **`_istlower_l`** | `_islower _l` | [`_ismbclower_l`](ismbclower-ismbclower-l-ismbcupper-ismbcupper-l.md) | **`_liswlower_l`** |
57+
| **`_istlower_l`** | `_islower_l` | [`_ismbclower_l`](ismbclower-ismbclower-l-ismbcupper-ismbcupper-l.md) | **`_liswlower_l`** |
5858

5959
## Remarks
6060

docs/c-runtime-library/reference/mbsnbset-s-mbsnbset-s-l.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ By default, this function's global state is scoped to the application. To change
9090
| Tchar.h routine | `_UNICODE` and `_MBCS` not defined | `_MBCS` defined | `_UNICODE` defined |
9191
|---|---|---|---|
9292
| `_tcsnset_s` | `_strnset_s` | **`_mbsnbset_s`** | `_wcsnset_s` |
93-
| `_tcsnset_s_l` | `_strnset_s _l` | **`_mbsnbset_s_l`** | `_wcsnset_s_l` |
93+
| `_tcsnset_s_l` | `_strnset_s_l` | **`_mbsnbset_s_l`** | `_wcsnset_s_l` |
9494

9595
## Requirements
9696

0 commit comments

Comments
 (0)