Skip to content

Commit 414e000

Browse files
authored
Add missing space between asterisk and open parenthesis
1 parent dbf0722 commit 414e000

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

docs/c-runtime-library/heapset.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
description: "Learn more about: _heapset"
32
title: "_heapset"
3+
description: "Learn more about: _heapset"
44
ms.date: "11/04/2016"
55
api_name: ["_heapset"]
66
api_location: ["msvcr90.dll", "msvcr80.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcrt.dll", "msvcr120.dll", "msvcr100.dll"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
99
f1_keywords: ["_heapset", "heapset"]
1010
helpviewer_keywords: ["checking heap", "heapset function", "heaps, checking", "debugging [CRT], heap-related problems", "_heapset function"]
11-
ms.assetid: 9667eeb0-55bc-4c19-af5f-d1fd0a142b3c
1211
---
1312
# `_heapset`
1413

@@ -47,7 +46,7 @@ In addition, if an error occurs, **`_heapset`** sets `errno` to `ENOSYS`.
4746

4847
The **`_heapset`** function shows free memory locations or nodes that have been unintentionally overwritten.
4948

50-
**`_heapset`** checks for minimal consistency on the heap and then sets each byte of the heap's free entries to the `fill` value. This known value shows which memory locations of the heap contain free nodes and which contain data that were unintentionally written to freed memory. If the operating system doesn't support **`_heapset`**(for example, Windows 98), the function returns `_HEAPOK` and sets `errno` to `ENOSYS`.
49+
**`_heapset`** checks for minimal consistency on the heap and then sets each byte of the heap's free entries to the `fill` value. This known value shows which memory locations of the heap contain free nodes and which contain data that were unintentionally written to freed memory. If the operating system doesn't support **`_heapset`** (for example, Windows 98), the function returns `_HEAPOK` and sets `errno` to `ENOSYS`.
5150

5251
## Requirements
5352

docs/c-runtime-library/reference/heapchk.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
description: "Learn more about: _heapchk"
32
title: "_heapchk"
3+
description: "Learn more about: _heapchk"
44
ms.date: "4/2/2020"
55
api_name: ["_heapchk", "_o__heapchk"]
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-heap-l1-1-0.dll"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
99
f1_keywords: ["_heapchk", "heapchk"]
1010
helpviewer_keywords: ["debugging [CRT], heap-related problems", "consistency checking of heaps", "heapchk function", "heaps, checking consistency", "_heapchk function"]
11-
ms.assetid: 859619a5-1e35-4f02-9e09-11d9fa266ec0
1211
---
1312
# `_heapchk`
1413

@@ -36,7 +35,7 @@ In addition, if an error occurs, **`_heapchk`** sets `errno` to `ENOSYS`.
3635
3736
## Remarks
3837
39-
The **`_heapchk`** function helps debug heap-related problems by checking for minimal consistency of the heap. If the operating system doesn't support **`_heapchk`**(for example, Windows 98), the function returns `_HEAPOK` and sets `errno` to `ENOSYS`.
38+
The **`_heapchk`** function helps debug heap-related problems by checking for minimal consistency of the heap. If the operating system doesn't support **`_heapchk`** (for example, Windows 98), the function returns `_HEAPOK` and sets `errno` to `ENOSYS`.
4039
4140
By default, this function's global state is scoped to the application. To change this behavior, see [Global state in the CRT](../global-state.md).
4241

docs/c-runtime-library/reference/heapmin.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
2-
description: "Learn more about: _heapmin"
32
title: "_heapmin"
3+
description: "Learn more about: _heapmin"
44
ms.date: "4/2/2020"
55
api_name: ["_heapmin", "_o__heapmin"]
66
api_location: ["msvcrt.dll", "msvcr80.dll", "msvcr90.dll", "msvcr100.dll", "msvcr100_clr0400.dll", "msvcr110.dll", "msvcr110_clr0400.dll", "msvcr120.dll", "msvcr120_clr0400.dll", "ucrtbase.dll", "api-ms-win-crt-heap-l1-1-0.dll"]
77
api_type: ["DLLExport"]
88
topic_type: ["apiref"]
99
f1_keywords: ["_heapmin", "heapmin"]
1010
helpviewer_keywords: ["heap memory", "minimizing heaps", "memory, releasing", "heaps, releasing unused memory", "_heapmin function", "heapmin function"]
11-
ms.assetid: c0bccdf6-2d14-4d7b-a7ff-d6a17bdb410f
1211
---
1312
# `_heapmin`
1413

@@ -28,7 +27,7 @@ For more information about this and other return codes, see [`errno`, `_doserrno
2827
2928
## Remarks
3029
31-
The **`_heapmin`** function minimizes the heap by releasing unused heap memory to the operating system. If the operating system doesn't support **`_heapmin`**(for example, Windows 98), the function returns -1 and sets `errno` to `ENOSYS`.
30+
The **`_heapmin`** function minimizes the heap by releasing unused heap memory to the operating system. If the operating system doesn't support **`_heapmin`** (for example, Windows 98), the function returns -1 and sets `errno` to `ENOSYS`.
3231
3332
By default, this function's global state is scoped to the application. To change this behavior, see [Global state in the CRT](../global-state.md).
3433

docs/cpp/unhook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ A pointer to the event handler method to be unhooked from an event. The handler
6464

6565
- Managed events: *`ReceiverClass`* is the event receiver class and *`HandlerMethod`* is the handler.
6666

67-
*`receiver`*(optional)
67+
*`receiver`* (optional)
6868
A pointer to an instance of the event receiver class. If you don't specify a receiver, the default is the receiver class or structure in which **`__unhook`** is called.
6969

7070
## Usage

0 commit comments

Comments
 (0)