Skip to content

Commit 947fa0d

Browse files
committed
Ruby: fix qldoc warnings
1 parent 4a01de1 commit 947fa0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ruby/ql/lib/codeql/ruby/security/CodeInjectionCustomizations.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module CodeInjection {
2929
TFull() or
3030
TSubString()
3131

32-
/** Flow states used to distinguish whether an attacker controls the entire string. */
32+
/** A flow state used to distinguish whether an attacker controls the entire string. */
3333
class State extends TState {
3434
string toString() { result = this.getStringRepresentation() }
3535

@@ -44,12 +44,12 @@ module CodeInjection {
4444
}
4545

4646
/**
47-
* Flow state used for normal tainted data, where an attacker might only control a substring.
47+
* A flow state used for normal tainted data, where an attacker might only control a substring.
4848
*/
4949
class SubString extends State, TSubString { }
5050

5151
/**
52-
* Flow state used for data that is entirely controlled by the attacker.
52+
* A flow state used for data that is entirely controlled by the attacker.
5353
*/
5454
class Full extends State, TFull { }
5555
}

0 commit comments

Comments
 (0)