@@ -816,14 +816,14 @@ module HTTP {
816
816
/** Provides classes for modeling HTTP clients. */
817
817
module Client {
818
818
/**
819
- * A method call that makes an outgoing HTTP request.
819
+ * A data-flow node that makes an outgoing HTTP request.
820
820
*
821
821
* Extend this class to refine existing API models. If you want to model new APIs,
822
- * extend `Request::Range` instead.
822
+ * extend `HTTP::Client:: Request::Range` instead.
823
823
*/
824
824
class Request extends DataFlow:: Node instanceof Request:: Range {
825
825
/**
826
- * Gets a node that contributes to the URL of the request.
826
+ * Gets a data-flow node that contributes to the URL of the request.
827
827
* Depending on the framework, a request may have multiple nodes which contribute to the URL.
828
828
*/
829
829
DataFlow:: Node getAUrlPart ( ) { result = super .getAUrlPart ( ) }
@@ -848,14 +848,14 @@ module HTTP {
848
848
/** Provides a class for modeling new HTTP requests. */
849
849
module Request {
850
850
/**
851
- * A method call that makes an outgoing HTTP request.
851
+ * A data-flow node that makes an outgoing HTTP request.
852
852
*
853
853
* Extend this class to model new APIs. If you want to refine existing API models,
854
- * extend `Request` instead.
854
+ * extend `HTTP::Client:: Request` instead.
855
855
*/
856
856
abstract class Range extends DataFlow:: Node {
857
857
/**
858
- * Gets a node that contributes to the URL of the request.
858
+ * Gets a data-flow node that contributes to the URL of the request.
859
859
* Depending on the framework, a request may have multiple nodes which contribute to the URL.
860
860
*/
861
861
abstract DataFlow:: Node getAUrlPart ( ) ;
0 commit comments