Skip to content

Commit 47b14f1

Browse files
committed
Polish Concepts.qll qldocs
1 parent b3ec82c commit 47b14f1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

python/ql/src/experimental/semmle/python/Concepts.qll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -346,12 +346,12 @@ class JWTEncoding extends DataFlow::Node instanceof JWTEncoding::Range {
346346
DataFlow::Node getKey() { result = super.getKey() }
347347

348348
/**
349-
* Gets the algorithm Node used in the encoding.
349+
* Gets the argument for the algorithm used in the encoding.
350350
*/
351351
DataFlow::Node getAlgorithm() { result = super.getAlgorithm() }
352352

353353
/**
354-
* Tries to get the algorithm used in the encoding.
354+
* Gets a string representation of the algorithm used in the encoding.
355355
*/
356356
string getAlgorithmString() { result = super.getAlgorithmString() }
357357
}
@@ -376,12 +376,12 @@ module JWTDecoding {
376376
abstract DataFlow::Node getKey();
377377

378378
/**
379-
* Gets the algorithm Node used in the encoding.
379+
* Gets the argument for the algorithm used in the encoding.
380380
*/
381381
abstract DataFlow::Node getAlgorithm();
382382

383383
/**
384-
* Tries to get the algorithm used in the encoding.
384+
* Gets a string representation of the algorithm used in the encoding.
385385
*/
386386
abstract string getAlgorithmString();
387387

@@ -415,12 +415,12 @@ class JWTDecoding extends DataFlow::Node instanceof JWTDecoding::Range {
415415
DataFlow::Node getKey() { result = super.getKey() }
416416

417417
/**
418-
* Gets the algorithm Node used in the encoding.
418+
* Gets the argument for the algorithm used in the encoding.
419419
*/
420420
DataFlow::Node getAlgorithm() { result = super.getAlgorithm() }
421421

422422
/**
423-
* Tries to get the algorithm used in the encoding.
423+
* Gets a string representation of the algorithm used in the encoding.
424424
*/
425425
string getAlgorithmString() { result = super.getAlgorithmString() }
426426

0 commit comments

Comments
 (0)