Skip to content

Commit f64e58a

Browse files
committed
Python: Fix a QLDoc for SensitiveDataSources
1 parent d7e3ebb commit f64e58a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

python/ql/src/semmle/python/dataflow/new/SensitiveDataSources.qll

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ private module SensitiveDataModeling {
9393
/**
9494
* Gets a reference to a string constant that, if used as the key in a lookup,
9595
* indicates the presence of sensitive data with `classification`.
96-
*
97-
* Also see `extraStepForCalls`.
9896
*/
9997
DataFlow::Node sensitiveLookupStringConst(SensitiveDataClassification classification) {
10098
sensitiveLookupStringConst(DataFlow::TypeTracker::end(), classification).flowsTo(result)
@@ -118,6 +116,8 @@ private module SensitiveDataModeling {
118116
/**
119117
* Tracks any modeled source of sensitive data (with any classification),
120118
* to limit the scope of `extraStepForCalls`. See it's QLDoc for more context.
119+
*
120+
* Also see `extraStepForCalls`.
121121
*/
122122
private DataFlow::LocalSourceNode possibleSensitiveCallable(DataFlow::TypeTracker t) {
123123
t.start() and
@@ -129,6 +129,8 @@ private module SensitiveDataModeling {
129129
/**
130130
* Tracks any modeled source of sensitive data (with any classification),
131131
* to limit the scope of `extraStepForCalls`. See it's QLDoc for more context.
132+
*
133+
* Also see `extraStepForCalls`.
132134
*/
133135
private DataFlow::Node possibleSensitiveCallable() {
134136
possibleSensitiveCallable(DataFlow::TypeTracker::end()).flowsTo(result)

0 commit comments

Comments
 (0)