@@ -37,7 +37,7 @@ class UnaryPlusExpr extends UnaryArithmeticOperation, @unaryplusexpr {
3737
3838/**
3939 * A C/C++ GNU conjugation expression. It operates on `_Complex` or
40- * `__complex_ `numbers, and is similar to the C99 `conj`, `conjf` and `conjl`
40+ * `__complex__ `numbers, and is similar to the C99 `conj`, `conjf` and `conjl`
4141 * functions.
4242 * ```
4343 * _Complex double a = ( 1.0, 2.0 );
@@ -55,7 +55,7 @@ class ConjugationExpr extends UnaryArithmeticOperation, @conjugation {
5555 *
5656 * This is the abstract base QL class for increment and decrement operations.
5757 *
58- * Note that this doesn't include calls to _user-defined_ `operator++`
58+ * Note that this does not include calls to _user-defined_ `operator++`
5959 * or `operator--`.
6060 */
6161abstract class CrementOperation extends UnaryArithmeticOperation {
@@ -74,35 +74,35 @@ abstract class CrementOperation extends UnaryArithmeticOperation {
7474/**
7575 * A C/C++ `++` expression (either prefix or postfix).
7676 *
77- * Note that this doesn't include calls to user-defined `operator++`.
77+ * Note that this does not include calls to _user-defined_ `operator++`.
7878 */
7979abstract class IncrementOperation extends CrementOperation { }
8080
8181/**
8282 * A C/C++ `--` expression (either prefix or postfix).
8383 *
84- * Note that this doesn't include calls to user-defined `operator--`.
84+ * Note that this does not include calls to _user-defined_ `operator--`.
8585 */
8686abstract class DecrementOperation extends CrementOperation { }
8787
8888/**
8989 * A C/C++ `++` or `--` prefix expression.
9090 *
91- * Note that this doesn't include calls to user-defined operators.
91+ * Note that this does not include calls to _user-defined_ operators.
9292 */
9393abstract class PrefixCrementOperation extends CrementOperation { }
9494
9595/**
9696 * A C/C++ `++` or `--` postfix expression.
9797 *
98- * Note that this doesn't include calls to user-defined operators.
98+ * Note that this does not include calls to _user-defined_ operators.
9999 */
100100abstract class PostfixCrementOperation extends CrementOperation { }
101101
102102/**
103103 * A C/C++ prefix increment expression, as in `++x`.
104104 *
105- * Note that this doesn't include calls to _user-defined_ `operator++`.
105+ * Note that this does not include calls to _user-defined_ `operator++`.
106106 * ```
107107 * b = ++a;
108108 * ```
@@ -118,7 +118,7 @@ class PrefixIncrExpr extends IncrementOperation, PrefixCrementOperation, @preinc
118118/**
119119 * A C/C++ prefix decrement expression, as in `--x`.
120120 *
121- * Note that this doesn't include calls to _user-defined_ `operator--`.
121+ * Note that this does not include calls to _user-defined_ `operator--`.
122122 * ```
123123 * b = --a;
124124 * ```
@@ -134,7 +134,7 @@ class PrefixDecrExpr extends DecrementOperation, PrefixCrementOperation, @predec
134134/**
135135 * A C/C++ postfix increment expression, as in `x++`.
136136 *
137- * Note that this doesn't include calls to _user-defined_ `operator++`.
137+ * Note that this does not include calls to _user-defined_ `operator++`.
138138 * ```
139139 * b = a++;
140140 * ```
@@ -152,7 +152,7 @@ class PostfixIncrExpr extends IncrementOperation, PostfixCrementOperation, @post
152152/**
153153 * A C/C++ postfix decrement expression, as in `x--`.
154154 *
155- * Note that this doesn't include calls to _user-defined_ `operator--`.
155+ * Note that this does not include calls to _user-defined_ `operator--`.
156156 * ```
157157 * b = a--;
158158 * ```
0 commit comments