Swift: QLDoc consistency.

This commit is contained in:
Geoffrey White
2023-04-27 13:55:09 +01:00
parent 5e7159f800
commit 08854136fe
2 changed files with 6 additions and 2 deletions

View File

@@ -43,7 +43,9 @@ You can use the predicates ``exprNode`` and ``parameterNode`` to map from expres
.. code-block:: ql
/** Gets a node corresponding to expression `e`. */
/**
* Gets a node corresponding to expression `e`.
*/
ExprNode exprNode(DataFlowExpr e) { result.asExpr() = e }
/**

View File

@@ -129,7 +129,9 @@ class PostUpdateNode extends Node instanceof PostUpdateNodeImpl {
Node getPreUpdateNode() { result = super.getPreUpdateNode() }
}
/** Gets a node corresponding to expression `e`. */
/**
* Gets a node corresponding to expression `e`.
*/
ExprNode exprNode(DataFlowExpr e) { result.asExpr() = e }
/**