C++: Correct QLDoc.

This commit is contained in:
Geoffrey White
2020-03-31 14:37:54 +01:00
parent a75e249112
commit aa13257c1b
2 changed files with 3 additions and 3 deletions

View File

@@ -216,8 +216,8 @@ class SizelessAllocationFunction extends AllocationFunction {
}
/**
* An `operator new` or `operator new[]` function that may be associated with a `new` or
* `new[]` expression. Note that `new` and `new[]` are not function calls, but these
* An `operator new` or `operator new[]` function that may be associated with `new` or
* `new[]` expressions. Note that `new` and `new[]` are not function calls, but these
* functions may also be called directly.
*/
class OperatorNewAllocationFunction extends AllocationFunction {

View File

@@ -81,7 +81,7 @@ class StandardDeallocationFunction extends DeallocationFunction {
/**
* An `operator delete` or `operator delete[]` function that may be associated
* with a `delete` or `delete[]` expression. Note that `delete` and `delete[]`
* with `delete` or `delete[]` expressions. Note that `delete` and `delete[]`
* are not function calls, but these functions may also be called directly.
*/
class OperatorDeleteDeallocationFunction extends DeallocationFunction {