Skip to content

Commit 3140b43

Browse files
yofftausbn
andauthored
Apply suggestions from code review
Co-authored-by: Taus <tausbn@github.com>
1 parent de1c75c commit 3140b43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/ql/src/semmle/python/SpecialMethods.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import python
1212

13-
/** A control flow node which might correpsond to a special method call. */
13+
/** A control flow node which might correspond to a special method call. */
1414
class PotentialSpecialMethodCallNode extends ControlFlowNode {
1515
PotentialSpecialMethodCallNode() { this instanceof SpecialMethod::Potential }
1616
}
@@ -20,12 +20,12 @@ class PotentialSpecialMethodCallNode extends ControlFlowNode {
2020
* Extend `SpecialMethod::Potential` to capture more cases.
2121
*/
2222
module SpecialMethod {
23-
/** A control flow node which might correpsond to a special method call. */
23+
/** A control flow node which might correspond to a special method call. */
2424
abstract class Potential extends ControlFlowNode {
2525
/** Gets the name of the method that would be called. */
2626
abstract string getSpecialMethodName();
2727

28-
/** Gets the controlflow node that would be passed as the specified argument. */
28+
/** Gets the control flow node that would be passed as the specified argument. */
2929
abstract ControlFlowNode getArg(int n);
3030

3131
/**

0 commit comments

Comments
 (0)