Skip to content

Commit 3ad4861

Browse files
committed
Python: fix replace of upper-case characters
1 parent c516d1f commit 3ad4861

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/ql/lib/semmle/python/controlflow/internal/AstNodeImpl.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ module Ast implements AstSig<Py::Location> {
156156
/**
157157
* A parameter of a callable.
158158
*
159-
* modeled per the C# template (`csharp/.../ControlFlowGraph.qll`):
159+
* Modeled per the C# template (`csharp/.../ControlFlowGraph.qll`):
160160
* each Python parameter (the `Py::Parameter` AST node, which is a `Name`
161161
* or — Python 2 only — a `Tuple` in store context) becomes a CFG node
162162
* at a stable position in the enclosing callable's entry sequence.
@@ -1231,7 +1231,7 @@ module Ast implements AstSig<Py::Location> {
12311231
}
12321232

12331233
/**
1234-
* An `import x.y` module expression. modeled as a leaf — the dotted
1234+
* An `import x.y` module expression. Modeled as a leaf — the dotted
12351235
* name is just a string.
12361236
*/
12371237
additional class ImportExpression extends Expr {

0 commit comments

Comments
 (0)