Skip to content

Commit 80eb0a2

Browse files
aschackmullsmowton
andauthored
Apply suggestions from code review
Co-authored-by: Chris Smowton <[email protected]>
1 parent 7d84cfa commit 80eb0a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java/ql/src/semmle/code/java/dataflow/FlowSummary.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ private import internal.FlowSummaryImpl as Impl
77
private import internal.DataFlowDispatch
88
private import internal.DataFlowPrivate
99

10-
// import all instances below
10+
// import all instances of SummarizedCallable below
1111
private module Summaries {
1212
private import semmle.code.java.dataflow.ExternalFlow
1313
}

java/ql/src/semmle/code/java/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ predicate simpleLocalFlowStep(Node node1, Node node2) {
156156
// to B as well. As an example, this simplifies modeling of fluent methods:
157157
// for `StringBuilder.append(x)` with a specified value flow from qualifier to
158158
// return value and taint flow from argument 0 to the qualifier, then this
159-
// allows the inferral of taint flow from argument 0 to the return value.
159+
// allows us to infer taint flow from argument 0 to the return value.
160160
node1.(SummaryNode).(PostUpdateNode).getPreUpdateNode().(ParameterNode) = node2
161161
}
162162

0 commit comments

Comments
 (0)