Skip to content

Commit 833041c

Browse files
committed
Fix QLDoc style errors
1 parent 2aa4651 commit 833041c

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,22 @@ private import semmle.javascript.security.dataflow.NosqlInjectionCustomizations
99
private import semmle.javascript.security.dataflow.TaintedPathCustomizations
1010

1111
/**
12-
* Defines a set of characteristics that a particular endpoint might have. This set of characteristics is used to make
13-
* decisions about whether to include the endpoint in the training set and with what label, as well as whether to score
14-
* the endpoint at inference time.
12+
* A set of characteristics that a particular endpoint might have. This set of characteristics is used to make decisions
13+
* about whether to include the endpoint in the training set and with what label, as well as whether to score the
14+
* endpoint at inference time.
1515
*/
1616
abstract class EndpointCharacteristic extends string {
1717
/**
18-
* The name of the characteristic, which should describe some characteristic of the endpoint that is meaningful for
19-
* determining whether it's a sink and if so of which type
18+
* Holds when the string matches the name of the characteristic, which should describe some characteristic of the
19+
* endpoint that is meaningful for determining whether it's a sink and if so of which type
2020
*/
2121
bindingset[this]
2222
EndpointCharacteristic() { any() }
2323

24-
/** The logic to identify which endpoints have this characteristic. */
24+
/**
25+
* Holds for endpoints that have this characteristic. This predicate contains the logic that applies characteristics
26+
* to the appropriate set of dataflow nodes.
27+
*/
2528
abstract predicate getEndpoints(DataFlow::Node n);
2629

2730
/**

0 commit comments

Comments
 (0)