Skip to content

Commit f93aac0

Browse files
committed
Rust: Correct / clarify some QLDoc.
1 parent e1e980c commit f93aac0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rust/ql/lib/codeql/rust/security/SensitiveData.qll

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ private import codeql.rust.dataflow.DataFlow
1515
cached
1616
abstract 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
*/
4040
private 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
*/
7272
private class SensitiveVariableAccess extends SensitiveData {
7373
SensitiveDataClassification classification;

0 commit comments

Comments
 (0)