Skip to content

Commit fe1107c

Browse files
committed
remove duplicated spaces in qldoc
1 parent 8f84320 commit fe1107c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

python/ql/lib/semmle/python/Comparisons.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ class ComparisonControlBlock extends ConditionBlock {
514514

515515
Comparison getTest() { this.getLastNode() = result }
516516

517-
/** Whether this conditional guard implies that, in block `b`, the result of `that` is `thatIsTrue` */
517+
/** Whether this conditional guard implies that, in block `b`, the result of `that` is `thatIsTrue` */
518518
predicate impliesThat(BasicBlock b, Comparison that, boolean thatIsTrue) {
519519
exists(boolean controlSense |
520520
this.controls(b, controlSense) and

python/ql/lib/semmle/python/Operations.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class LShift extends LShift_ {
9898
override string getSpecialMethodName() { result = "__lshift__" }
9999
}
100100

101-
/** A modulo (`%`) binary operator, which includes string formatting */
101+
/** A modulo (`%`) binary operator, which includes string formatting */
102102
class Mod extends Mod_ {
103103
override string getSpecialMethodName() { result = "__mod__" }
104104
}

python/ql/lib/semmle/python/essa/Essa.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import semmle.python.essa.Definitions
88

99
/** An (enhanced) SSA variable derived from `SsaSourceVariable`. */
1010
class EssaVariable extends TEssaDefinition {
11-
/** Gets the (unique) definition of this variable. */
11+
/** Gets the (unique) definition of this variable. */
1212
EssaDefinition getDefinition() { this = result }
1313

1414
/**

python/ql/lib/semmle/python/essa/SsaDefinitions.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ module SsaSource {
127127
not test_contains(_, call)
128128
}
129129

130-
/** Holds if an attribute is deleted at `def` and `use` is the use of `v` for that deletion */
130+
/** Holds if an attribute is deleted at `def` and `use` is the use of `v` for that deletion */
131131
cached
132132
predicate attribute_deletion_refinement(Variable v, NameNode use, DeletionNode def) {
133133
use.uses(v) and

python/ql/src/Security/CWE-327/TlsLibraryModel.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ abstract class TlsLibrary extends string {
8888
/** The name of a specific protocol version. */
8989
abstract string specific_version_name(ProtocolVersion version);
9090

91-
/** Gets a name, which is a member of `version_constants`, that can be used to specify the protocol family `family`. */
91+
/** Gets a name, which is a member of `version_constants`, that can be used to specify the protocol family `family`. */
9292
abstract string unspecific_version_name(ProtocolFamily family);
9393

9494
/** Gets an API node representing the module or class holding the version constants. */

0 commit comments

Comments
 (0)