Skip to content

Commit fe1bb85

Browse files
committed
Fix name formatting
1 parent 8585568 commit fe1bb85

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

rule_packages/cpp/Memory2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"description": "Pointer difference should be taken from pointers that belong to a same array.",
1111
"kind": "problem",
12-
"name": "Subtraction between pointers shall only be applied to ones that address elements of the same array.",
12+
"name": "Subtraction between pointers shall only be applied to ones that address elements of the same array",
1313
"precision": "very-high",
1414
"severity": "error",
1515
"short_name": "PointerDifferenceTakenBetweenDifferentArrays",

rule_packages/cpp/Memory3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"description": "Pointer comparison should be done between ones that belong to a same array.",
1111
"kind": "problem",
12-
"name": "The built-in relational operators >, >=, < and <= shall not be applied to objects of pointer type.",
12+
"name": "The built-in relational operators >, >=, < and <= shall not be applied to objects of pointer type",
1313
"precision": "very-high",
1414
"severity": "error",
1515
"short_name": "PointerComparedBetweenDifferentArrays",

rule_packages/cpp/Memory4.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"description": "Copying a member of a union to another, and copying a slice of an array to an overlapping one causes undefined behavior.",
1111
"kind": "problem",
12-
"name": "An object or subobject must not be copied to an overlapping object.",
12+
"name": "An object or subobject must not be copied to an overlapping object",
1313
"precision": "high",
1414
"severity": "error",
1515
"short_name": "ObjectMustNotBeCopiedToAnOverlappingObject",

rule_packages/cpp/Memory5.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"description": "Dynamically allocated memory must not be managed manually.",
1111
"kind": "problem",
12-
"name": "Dynamic memory shall be managed automatically.",
12+
"name": "Dynamic memory shall be managed automatically",
1313
"precision": "very-high",
1414
"severity": "error",
1515
"short_name": "DynamicMemoryManagedManually",

rule_packages/cpp/Memory6.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"description": "Using advanced memory management that either alters allocation and deallocation or constructs object construction on uninitalized memory may result in undefined behavior.",
1111
"kind": "problem",
12-
"name": "Advanced memory management shall not be used.",
12+
"name": "Advanced memory management shall not be used",
1313
"precision": "very-high",
1414
"severity": "error",
1515
"short_name": "AdvancedMemoryManagementUsed",

0 commit comments

Comments
 (0)