We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93c6560 commit 2f0d328Copy full SHA for 2f0d328
1 file changed
rust/ql/lib/codeql/rust/dataflow/internal/Node.qll
@@ -82,12 +82,12 @@ class FlowSummaryNode extends Node, TFlowSummaryNode {
82
result = this.getSummaryNode().getSinkElement()
83
}
84
85
- /** Holds is this node is a source node of kind `kind`. */
+ /** Holds if this node is a source node of kind `kind`. */
86
predicate isSource(string kind, string model) {
87
this.getSummaryNode().(FlowSummaryImpl::Private::SourceOutputNode).isEntry(kind, model)
88
89
90
- /** Holds is this node is a sink node of kind `kind`. */
+ /** Holds if this node is a sink node of kind `kind`. */
91
predicate isSink(string kind, string model) {
92
this.getSummaryNode().(FlowSummaryImpl::Private::SinkInputNode).isExit(kind, model)
93
0 commit comments