@@ -30,7 +30,7 @@ module Cryptography {
3030 class PasswordHashingAlgorithm = CryptoAlgorithms:: PasswordHashingAlgorithm ;
3131
3232 /**
33- * A data- flow node that is an application of a cryptographic algorithm. For example,
33+ * A data flow node that is an application of a cryptographic algorithm. For example,
3434 * encryption, decryption, signature-validation.
3535 *
3636 * Extend this class to refine existing API models. If you want to model new APIs,
@@ -40,7 +40,7 @@ module Cryptography {
4040 /** Gets the algorithm used, if it matches a known `CryptographicAlgorithm`. */
4141 CryptographicAlgorithm getAlgorithm ( ) { result = super .getAlgorithm ( ) }
4242
43- /** Gets the data- flow node where the cryptographic algorithm used in this operation is configured. */
43+ /** Gets the data flow node where the cryptographic algorithm used in this operation is configured. */
4444 DataFlow:: Node getInitialization ( ) { result = super .getInitialization ( ) }
4545
4646 /** Gets an input the algorithm is used on, for example the plain text input to be encrypted. */
@@ -61,14 +61,14 @@ module Cryptography {
6161 /** Provides classes for modeling new applications of a cryptographic algorithms. */
6262 module CryptographicOperation {
6363 /**
64- * A data- flow node that is an application of a cryptographic algorithm. For example,
64+ * A data flow node that is an application of a cryptographic algorithm. For example,
6565 * encryption, decryption, signature-validation.
6666 *
6767 * Extend this class to model new APIs. If you want to refine existing API models,
6868 * extend `CryptographicOperation` instead.
6969 */
7070 abstract class Range extends DataFlow:: Node {
71- /** Gets the data- flow node where the cryptographic algorithm used in this operation is configured. */
71+ /** Gets the data flow node where the cryptographic algorithm used in this operation is configured. */
7272 abstract DataFlow:: Node getInitialization ( ) ;
7373
7474 /** Gets the algorithm used, if it matches a known `CryptographicAlgorithm`. */
@@ -118,14 +118,14 @@ module Http {
118118 /** Provides classes for modeling HTTP clients. */
119119 module Client {
120120 /**
121- * A data- flow node that makes an outgoing HTTP request.
121+ * A data flow node that makes an outgoing HTTP request.
122122 *
123123 * Extend this class to refine existing API models. If you want to model new APIs,
124124 * extend `Http::Client::Request::Range` instead.
125125 */
126126 class Request extends DataFlow:: Node instanceof Request:: Range {
127127 /**
128- * Gets a data- flow node that contributes to the URL of the request.
128+ * Gets a data flow node that contributes to the URL of the request.
129129 * Depending on the framework, a request may have multiple nodes which contribute to the URL.
130130 */
131131 DataFlow:: Node getAUrlPart ( ) { result = super .getAUrlPart ( ) }
@@ -150,14 +150,14 @@ module Http {
150150 /** Provides a class for modeling new HTTP requests. */
151151 module Request {
152152 /**
153- * A data- flow node that makes an outgoing HTTP request.
153+ * A data flow node that makes an outgoing HTTP request.
154154 *
155155 * Extend this class to model new APIs. If you want to refine existing API models,
156156 * extend `Http::Client::Request` instead.
157157 */
158158 abstract class Range extends DataFlow:: Node {
159159 /**
160- * Gets a data- flow node that contributes to the URL of the request.
160+ * Gets a data flow node that contributes to the URL of the request.
161161 * Depending on the framework, a request may have multiple nodes which contribute to the URL.
162162 */
163163 abstract DataFlow:: Node getAUrlPart ( ) ;
0 commit comments