Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2beb782

Browse files
committed
C++: Backticks.
1 parent 5990346 commit 2beb782

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • cpp/ql/src/semmle/code/cpp/stmts

cpp/ql/src/semmle/code/cpp/stmts/Stmt.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ class CoReturnStmt extends Stmt, @stmt_co_return {
678678
override string getAPrimaryQlClass() { result = "CoReturnStmt" }
679679

680680
/**
681-
* Gets the operand of this 'co_return' statement.
681+
* Gets the operand of this `co_return` statement.
682682
*
683683
* For example, for
684684
* ```
@@ -693,7 +693,7 @@ class CoReturnStmt extends Stmt, @stmt_co_return {
693693
FunctionCall getOperand() { result = this.getChild(0) }
694694

695695
/**
696-
* Gets the expression of this 'co_return' statement, if any.
696+
* Gets the expression of this `co_return` statement, if any.
697697
*
698698
* For example, for
699699
* ```
@@ -707,7 +707,7 @@ class CoReturnStmt extends Stmt, @stmt_co_return {
707707
Expr getExpr() { result = this.getOperand().getArgument(0) }
708708

709709
/**
710-
* Holds if this 'co_return' statement has an expression.
710+
* Holds if this `co_return` statement has an expression.
711711
*
712712
* For example, this holds for
713713
* ```

0 commit comments

Comments
 (0)