Skip to content

Commit 8d7dfcf

Browse files
authored
Merge pull request #3232 from corob-msft/docs/corob/cpp-docs-2516
Address cpp-docs 2516 sample code
2 parents 15c1e98 + a5bfd8f commit 8d7dfcf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/code-quality/c28230.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: C28230
3-
ms.date: 11/04/2016
3+
description: "Understand the causes of Microsoft C/C++ code analysis warning C28230, and learn how to fix them."
4+
ms.date: 10/23/2020
45
ms.topic: reference
56
f1_keywords: ["C28230"]
67
helpviewer_keywords: ["C28230"]
@@ -24,7 +25,7 @@ struct MyStruct
2425
};
2526

2627
// Oops, the name of the member is spelled wrong so it will not be found
27-
void f(_Out_writes_(value.usefulMember) int *buffer, MyStruct value)
28+
void f(_Out_writes_(value.usefulmember) int *buffer, MyStruct value)
2829
{
2930
for(int i = 0 ; i < value.usefulMember; i++)
3031
{

0 commit comments

Comments
 (0)