Skip to content

Commit 0252513

Browse files
committed
C++: Fix QLDoc issues
1 parent 3ebb549 commit 0252513

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cpp/ql/lib/semmle/code/cpp/Type.qll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,12 +1124,12 @@ class Decltype extends Type, @decltype {
11241124
override string getAPrimaryQlClass() { result = "Decltype" }
11251125

11261126
/**
1127-
* The expression whose type is being obtained by this decltype.
1127+
* Gets the expression whose type is being obtained by this decltype.
11281128
*/
11291129
Expr getExpr() { decltypes(underlyingElement(this), unresolveElement(result), _, _, _) }
11301130

11311131
/**
1132-
* The type immediately yielded by this decltype.
1132+
* Gets the type immediately yielded by this decltype.
11331133
*/
11341134
Type getBaseType() { decltypes(underlyingElement(this), _, _, unresolveElement(result), _) }
11351135

@@ -1200,12 +1200,12 @@ class TypeofExprType extends Type, @decltype {
12001200
override string getAPrimaryQlClass() { result = "TypeofExprType" }
12011201

12021202
/**
1203-
* The expression whose type is being obtained by this typeof.
1203+
* Gets the expression whose type is being obtained by this typeof.
12041204
*/
12051205
Expr getExpr() { decltypes(underlyingElement(this), unresolveElement(result), _, _, _) }
12061206

12071207
/**
1208-
* The type immediately yielded by this typeof.
1208+
* Gets the type immediately yielded by this typeof.
12091209
*/
12101210
Type getBaseType() { decltypes(underlyingElement(this), _, _, unresolveElement(result), _) }
12111211

@@ -1261,12 +1261,12 @@ class TransformedType extends Type, @type_operator {
12611261
override string getAPrimaryQlClass() { result = "TransformedType" }
12621262

12631263
/**
1264-
* The type immediately yielded by this transformation.
1264+
* Gets the type immediately yielded by this transformation.
12651265
*/
12661266
Type getBaseType() { type_operators(underlyingElement(this), _, _, unresolveElement(result)) }
12671267

12681268
/**
1269-
* The type transformed.
1269+
* Gets the type that is transformed.
12701270
*/
12711271
Type getTransformedType() {
12721272
type_operators(underlyingElement(this), unresolveElement(result), _, _)

0 commit comments

Comments
 (0)