Skip to content

Commit aa13257

Browse files
committed
C++: Correct QLDoc.
1 parent a75e249 commit aa13257

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cpp/ql/src/semmle/code/cpp/models/implementations/Allocation.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ class SizelessAllocationFunction extends AllocationFunction {
216216
}
217217

218218
/**
219-
* An `operator new` or `operator new[]` function that may be associated with a `new` or
220-
* `new[]` expression. Note that `new` and `new[]` are not function calls, but these
219+
* An `operator new` or `operator new[]` function that may be associated with `new` or
220+
* `new[]` expressions. Note that `new` and `new[]` are not function calls, but these
221221
* functions may also be called directly.
222222
*/
223223
class OperatorNewAllocationFunction extends AllocationFunction {

cpp/ql/src/semmle/code/cpp/models/implementations/Deallocation.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class StandardDeallocationFunction extends DeallocationFunction {
8181

8282
/**
8383
* An `operator delete` or `operator delete[]` function that may be associated
84-
* with a `delete` or `delete[]` expression. Note that `delete` and `delete[]`
84+
* with `delete` or `delete[]` expressions. Note that `delete` and `delete[]`
8585
* are not function calls, but these functions may also be called directly.
8686
*/
8787
class OperatorDeleteDeallocationFunction extends DeallocationFunction {

0 commit comments

Comments
 (0)