Skip to content

Commit 6db8c8b

Browse files
authored
Merge pull request #12656 from aschackmull/dataflow/qldoc
Dataflow: Minor qldoc fix
2 parents 559f6a5 + 85511ba commit 6db8c8b

File tree

16 files changed

+32
-32
lines changed

16 files changed

+32
-32
lines changed

cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ signature module GlobalFlowSig {
222222
}
223223

224224
/**
225-
* Constructs a standard data flow computation.
225+
* Constructs a global data flow computation.
226226
*/
227227
module Global<ConfigSig Config> implements GlobalFlowSig {
228228
private module C implements FullStateConfigSig {
@@ -239,7 +239,7 @@ deprecated module Make<ConfigSig Config> implements GlobalFlowSig {
239239
}
240240

241241
/**
242-
* Constructs a data flow computation using flow state.
242+
* Constructs a global data flow computation using flow state.
243243
*/
244244
module GlobalWithState<StateConfigSig Config> implements GlobalFlowSig {
245245
private module C implements FullStateConfigSig {

cpp/ql/lib/semmle/code/cpp/dataflow/internal/tainttracking1/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private module AddTaintDefaults<DataFlowInternal::FullStateConfigSig Config> imp
3333
}
3434

3535
/**
36-
* Constructs a standard taint tracking computation.
36+
* Constructs a global taint tracking computation.
3737
*/
3838
module Global<DataFlow::ConfigSig Config> implements DataFlow::GlobalFlowSig {
3939
private module Config0 implements DataFlowInternal::FullStateConfigSig {
@@ -54,7 +54,7 @@ deprecated module Make<DataFlow::ConfigSig Config> implements DataFlow::GlobalFl
5454
}
5555

5656
/**
57-
* Constructs a taint tracking computation using flow state.
57+
* Constructs a global taint tracking computation using flow state.
5858
*/
5959
module GlobalWithState<DataFlow::StateConfigSig Config> implements DataFlow::GlobalFlowSig {
6060
private module Config0 implements DataFlowInternal::FullStateConfigSig {

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ signature module GlobalFlowSig {
222222
}
223223

224224
/**
225-
* Constructs a standard data flow computation.
225+
* Constructs a global data flow computation.
226226
*/
227227
module Global<ConfigSig Config> implements GlobalFlowSig {
228228
private module C implements FullStateConfigSig {
@@ -239,7 +239,7 @@ deprecated module Make<ConfigSig Config> implements GlobalFlowSig {
239239
}
240240

241241
/**
242-
* Constructs a data flow computation using flow state.
242+
* Constructs a global data flow computation using flow state.
243243
*/
244244
module GlobalWithState<StateConfigSig Config> implements GlobalFlowSig {
245245
private module C implements FullStateConfigSig {

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/tainttracking1/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private module AddTaintDefaults<DataFlowInternal::FullStateConfigSig Config> imp
3333
}
3434

3535
/**
36-
* Constructs a standard taint tracking computation.
36+
* Constructs a global taint tracking computation.
3737
*/
3838
module Global<DataFlow::ConfigSig Config> implements DataFlow::GlobalFlowSig {
3939
private module Config0 implements DataFlowInternal::FullStateConfigSig {
@@ -54,7 +54,7 @@ deprecated module Make<DataFlow::ConfigSig Config> implements DataFlow::GlobalFl
5454
}
5555

5656
/**
57-
* Constructs a taint tracking computation using flow state.
57+
* Constructs a global taint tracking computation using flow state.
5858
*/
5959
module GlobalWithState<DataFlow::StateConfigSig Config> implements DataFlow::GlobalFlowSig {
6060
private module Config0 implements DataFlowInternal::FullStateConfigSig {

csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ signature module GlobalFlowSig {
222222
}
223223

224224
/**
225-
* Constructs a standard data flow computation.
225+
* Constructs a global data flow computation.
226226
*/
227227
module Global<ConfigSig Config> implements GlobalFlowSig {
228228
private module C implements FullStateConfigSig {
@@ -239,7 +239,7 @@ deprecated module Make<ConfigSig Config> implements GlobalFlowSig {
239239
}
240240

241241
/**
242-
* Constructs a data flow computation using flow state.
242+
* Constructs a global data flow computation using flow state.
243243
*/
244244
module GlobalWithState<StateConfigSig Config> implements GlobalFlowSig {
245245
private module C implements FullStateConfigSig {

csharp/ql/lib/semmle/code/csharp/dataflow/internal/tainttracking1/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private module AddTaintDefaults<DataFlowInternal::FullStateConfigSig Config> imp
3333
}
3434

3535
/**
36-
* Constructs a standard taint tracking computation.
36+
* Constructs a global taint tracking computation.
3737
*/
3838
module Global<DataFlow::ConfigSig Config> implements DataFlow::GlobalFlowSig {
3939
private module Config0 implements DataFlowInternal::FullStateConfigSig {
@@ -54,7 +54,7 @@ deprecated module Make<DataFlow::ConfigSig Config> implements DataFlow::GlobalFl
5454
}
5555

5656
/**
57-
* Constructs a taint tracking computation using flow state.
57+
* Constructs a global taint tracking computation using flow state.
5858
*/
5959
module GlobalWithState<DataFlow::StateConfigSig Config> implements DataFlow::GlobalFlowSig {
6060
private module Config0 implements DataFlowInternal::FullStateConfigSig {

go/ql/lib/semmle/go/dataflow/internal/DataFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ signature module GlobalFlowSig {
222222
}
223223

224224
/**
225-
* Constructs a standard data flow computation.
225+
* Constructs a global data flow computation.
226226
*/
227227
module Global<ConfigSig Config> implements GlobalFlowSig {
228228
private module C implements FullStateConfigSig {
@@ -239,7 +239,7 @@ deprecated module Make<ConfigSig Config> implements GlobalFlowSig {
239239
}
240240

241241
/**
242-
* Constructs a data flow computation using flow state.
242+
* Constructs a global data flow computation using flow state.
243243
*/
244244
module GlobalWithState<StateConfigSig Config> implements GlobalFlowSig {
245245
private module C implements FullStateConfigSig {

go/ql/lib/semmle/go/dataflow/internal/tainttracking1/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private module AddTaintDefaults<DataFlowInternal::FullStateConfigSig Config> imp
3333
}
3434

3535
/**
36-
* Constructs a standard taint tracking computation.
36+
* Constructs a global taint tracking computation.
3737
*/
3838
module Global<DataFlow::ConfigSig Config> implements DataFlow::GlobalFlowSig {
3939
private module Config0 implements DataFlowInternal::FullStateConfigSig {
@@ -54,7 +54,7 @@ deprecated module Make<DataFlow::ConfigSig Config> implements DataFlow::GlobalFl
5454
}
5555

5656
/**
57-
* Constructs a taint tracking computation using flow state.
57+
* Constructs a global taint tracking computation using flow state.
5858
*/
5959
module GlobalWithState<DataFlow::StateConfigSig Config> implements DataFlow::GlobalFlowSig {
6060
private module Config0 implements DataFlowInternal::FullStateConfigSig {

java/ql/lib/semmle/code/java/dataflow/internal/DataFlow.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ signature module GlobalFlowSig {
222222
}
223223

224224
/**
225-
* Constructs a standard data flow computation.
225+
* Constructs a global data flow computation.
226226
*/
227227
module Global<ConfigSig Config> implements GlobalFlowSig {
228228
private module C implements FullStateConfigSig {
@@ -239,7 +239,7 @@ deprecated module Make<ConfigSig Config> implements GlobalFlowSig {
239239
}
240240

241241
/**
242-
* Constructs a data flow computation using flow state.
242+
* Constructs a global data flow computation using flow state.
243243
*/
244244
module GlobalWithState<StateConfigSig Config> implements GlobalFlowSig {
245245
private module C implements FullStateConfigSig {

java/ql/lib/semmle/code/java/dataflow/internal/tainttracking1/TaintTracking.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private module AddTaintDefaults<DataFlowInternal::FullStateConfigSig Config> imp
3333
}
3434

3535
/**
36-
* Constructs a standard taint tracking computation.
36+
* Constructs a global taint tracking computation.
3737
*/
3838
module Global<DataFlow::ConfigSig Config> implements DataFlow::GlobalFlowSig {
3939
private module Config0 implements DataFlowInternal::FullStateConfigSig {
@@ -54,7 +54,7 @@ deprecated module Make<DataFlow::ConfigSig Config> implements DataFlow::GlobalFl
5454
}
5555

5656
/**
57-
* Constructs a taint tracking computation using flow state.
57+
* Constructs a global taint tracking computation using flow state.
5858
*/
5959
module GlobalWithState<DataFlow::StateConfigSig Config> implements DataFlow::GlobalFlowSig {
6060
private module Config0 implements DataFlowInternal::FullStateConfigSig {

0 commit comments

Comments
 (0)