@@ -816,14 +816,14 @@ module HTTP {
816816 /** Provides classes for modeling HTTP clients. */
817817 module Client {
818818 /**
819- * A method call that makes an outgoing HTTP request.
819+ * A data-flow node that makes an outgoing HTTP request.
820820 *
821821 * 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.
823823 */
824824 class Request extends DataFlow:: Node instanceof Request:: Range {
825825 /**
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.
827827 * Depending on the framework, a request may have multiple nodes which contribute to the URL.
828828 */
829829 DataFlow:: Node getAUrlPart ( ) { result = super .getAUrlPart ( ) }
@@ -848,14 +848,14 @@ module HTTP {
848848 /** Provides a class for modeling new HTTP requests. */
849849 module Request {
850850 /**
851- * A method call that makes an outgoing HTTP request.
851+ * A data-flow node that makes an outgoing HTTP request.
852852 *
853853 * 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.
855855 */
856856 abstract class Range extends DataFlow:: Node {
857857 /**
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.
859859 * Depending on the framework, a request may have multiple nodes which contribute to the URL.
860860 */
861861 abstract DataFlow:: Node getAUrlPart ( ) ;
0 commit comments