Skip to content

Commit 569d556

Browse files
authored
Fix missing comma in function prototypes
1 parent d7c16ed commit 569d556

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

docs/build-insights/reference/sdk/functions/stop-tracing-session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ inline RESULT_CODE StopTracingSession(
2828
TRACING_SESSION_STATISTICS* statistics);
2929

3030
inline RESULT_CODE StopTracingSession(
31-
const wchar_t* sessionName
31+
const wchar_t* sessionName,
3232
const wchar_t* outputLogFile,
3333
TRACING_SESSION_STATISTICS* statistics);
3434
```

docs/c-runtime-library/reference/cgets-s-cgetws-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ errno_t _cgets_s(
2626
size_t *pSizeRead
2727
);
2828
errno_t _cgetws_s(
29-
wchar_t *buffer
29+
wchar_t *buffer,
3030
size_t numberOfElements,
3131
size_t *pSizeRead
3232
);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Builds the exception record and calls the runtime environment to start processin
1818

1919
```C
2020
extern "C" void __stdcall _CxxThrowException(
21-
void* pExceptionObject
21+
void* pExceptionObject,
2222
_ThrowInfo* pThrowInfo
2323
);
2424
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A combination of `realloc` and `calloc`. Reallocates an array in memory and init
1818

1919
```C
2020
void *_recalloc(
21-
void *memblock
21+
void *memblock,
2222
size_t num,
2323
size_t size
2424
);

docs/intrinsics/mm-insert-si64-mm-inserti-si64.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ __m128i _mm_insert_si64(
2121
);
2222
__m128i _mm_inserti_si64(
2323
__m128i Source1,
24-
__m128i Source2
24+
__m128i Source2,
2525
int Length,
2626
int Index
2727
);

docs/mfc/reference/cwinapp-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,7 @@ The framework calls this method to open the named [CDocument](../../mfc/referenc
15351535
15361536
```
15371537
virtual CDocument* OpenDocumentFile(
1538-
LPCTSTR lpszFileName
1538+
LPCTSTR lpszFileName,
15391539
BOOL bAddToMRU = TRUE);
15401540
```
15411541

docs/parallel/amp/reference/concurrency-direct3d-namespace-functions-amp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ Creates an [accelerator_view](accelerator-view-class.md) object from a pointer t
121121
122122
```cpp
123123
accelerator_view create_accelerator_view(
124-
IUnknown * _D3D_device
124+
IUnknown * _D3D_device,
125125
queuing_mode _Qmode = queuing_mode_automatic);
126126
127127
accelerator_view create_accelerator_view(
128128
accelerator& _Accelerator,
129-
bool _Disable_timeout
129+
bool _Disable_timeout,
130130
queuing_mode _Qmode = queuing_mode_automatic);
131131
```
132132

0 commit comments

Comments
 (0)