File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
rust/ql/lib/codeql/rust/security Expand file tree Collapse file tree 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
1515cached
1616abstract class SensitiveData extends DataFlow:: Node {
1717 /**
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.
1919 */
2020 cached
2121 abstract SensitiveDataClassification getClassification ( ) ;
@@ -35,7 +35,7 @@ private class SensitiveDataFunction extends Function {
3535}
3636
3737/**
38- * A function call that might produce sensitive data.
38+ * A function call data flow node that might produce sensitive data.
3939 */
4040private class SensitiveDataCall extends SensitiveData {
4141 SensitiveDataClassification classification ;
@@ -67,7 +67,7 @@ private class SensitiveDataVariable extends Variable {
6767}
6868
6969/**
70- * A variable access that might produce sensitive data.
70+ * A variable access data flow node that might produce sensitive data.
7171 */
7272private class SensitiveVariableAccess extends SensitiveData {
7373 SensitiveDataClassification classification ;
You can’t perform that action at this time.
0 commit comments