File tree 1 file changed +3
-3
lines changed
rust/ql/lib/codeql/rust/security
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ private import codeql.rust.dataflow.DataFlow
15
15
cached
16
16
abstract class SensitiveData extends DataFlow:: Node {
17
17
/**
18
- * Gets a classification of the kind of sensitive data this expression might contain.
18
+ * Gets the classification of sensitive data this expression might contain.
19
19
*/
20
20
cached
21
21
abstract SensitiveDataClassification getClassification ( ) ;
@@ -35,7 +35,7 @@ private class SensitiveDataFunction extends Function {
35
35
}
36
36
37
37
/**
38
- * A function call that might produce sensitive data.
38
+ * A function call data flow node that might produce sensitive data.
39
39
*/
40
40
private class SensitiveDataCall extends SensitiveData {
41
41
SensitiveDataClassification classification ;
@@ -67,7 +67,7 @@ private class SensitiveDataVariable extends Variable {
67
67
}
68
68
69
69
/**
70
- * A variable access that might produce sensitive data.
70
+ * A variable access data flow node that might produce sensitive data.
71
71
*/
72
72
private class SensitiveVariableAccess extends SensitiveData {
73
73
SensitiveDataClassification classification ;
You can’t perform that action at this time.
0 commit comments