Skip to content

Commit 7f78424

Browse files
Updated C6283
Removed extra characters
1 parent 07f211b commit 7f78424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/code-quality/c6283.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ms.assetid: 7760d32e-6d71-4c81-a6d2-719c9c76c2bb
99
---
1010
# Warning C6283
1111

12-
> '\**variable-name*' is allocated with array new [], but deleted with scalar delete
12+
> '*variable-name*' is allocated with array new [], but deleted with scalar delete
1313
14-
This warning appears only in C++ code and indicates that the calling function has inconsistently allocated memory with the array `new []` operator, but freed it with the scalar **`delete`** operator.
14+
This warning appears only in C++ code and indicates that the calling function has inconsistently allocated memory with the array `new []` operator, but freed it with the scalar `delete` operator.
1515

1616
## Remarks
1717

0 commit comments

Comments
 (0)