Skip to content

Commit 0885413

Browse files
committed
Swift: QLDoc consistency.
1 parent 5e7159f commit 0885413

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/codeql/codeql-language-guides/analyzing-data-flow-in-swift.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ You can use the predicates ``exprNode`` and ``parameterNode`` to map from expres
4343

4444
.. code-block:: ql
4545
46-
/** Gets a node corresponding to expression `e`. */
46+
/**
47+
* Gets a node corresponding to expression `e`.
48+
*/
4749
ExprNode exprNode(DataFlowExpr e) { result.asExpr() = e }
4850
4951
/**

swift/ql/lib/codeql/swift/dataflow/internal/DataFlowPublic.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ class PostUpdateNode extends Node instanceof PostUpdateNodeImpl {
129129
Node getPreUpdateNode() { result = super.getPreUpdateNode() }
130130
}
131131

132-
/** Gets a node corresponding to expression `e`. */
132+
/**
133+
* Gets a node corresponding to expression `e`.
134+
*/
133135
ExprNode exprNode(DataFlowExpr e) { result.asExpr() = e }
134136

135137
/**

0 commit comments

Comments
 (0)