File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/ql/src/semmle/python Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1010
1111import 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. */
1414class 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 */
2222module 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 /**
You can’t perform that action at this time.
0 commit comments