Skip to content

Commit bd39e25

Browse files
TylerMSFTTylerMSFT
TylerMSFT
authored and
TylerMSFT
committed
missed a couple code escapes
1 parent eda05d7 commit bd39e25

File tree

1 file changed

+3
-3
lines changed
  • docs/c-runtime-library/reference

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ intptr_t _cwait(
3030
### Parameters
3131

3232
*`termstat`*\
33-
Pointer to a buffer where the result code of the specified process will be stored, or **NULL**.
33+
Pointer to a buffer where the result code of the specified process will be stored, or **`NULL`**.
3434

3535
*`procHandle`*\
3636
The handle to the process to wait on (that is, the process that has to terminate before **_cwait** can return).
3737

3838
*`action`*\
39-
`NULL`: Ignored by Windows operating system applications; for other applications: action code to perform on *`procHandle`*.
39+
**`NULL`**: Ignored by Windows operating system applications; for other applications: action code to perform on *`procHandle`*.
4040

4141
## Return Value
4242

@@ -45,7 +45,7 @@ When the specified process has successfully completed, returns the handle of the
4545
|Value|Description|
4646
|-----------|-----------------|
4747
|**`ECHILD`**|No specified process exists, *`procHandle`* is invalid, or the call to the [`GetExitCodeProcess`](/windows/win32/api/processthreadsapi/nf-processthreadsapi-getexitcodeprocess) or [`WaitForSingleObject`](/windows/win32/api/synchapi/nf-synchapi-waitforsingleobject) API failed.|
48-
|**`EINVAL`**|*action* is invalid.|
48+
|**`EINVAL`**|*`action`* is invalid.|
4949

5050
For more information about these and other return codes, see [`errno, _doserrno, _sys_errlist, and _sys_nerr`](../../c-runtime-library/errno-doserrno-sys-errlist-and-sys-nerr.md).
5151

0 commit comments

Comments
 (0)