Python: Fix typo

This commit is contained in:
Rasmus Wriedt Larsen
2023-06-16 14:41:36 +02:00
parent b7bf750174
commit afafaac0d7

View File

@@ -243,7 +243,7 @@ private module SummaryTypeTrackerInput implements SummaryTypeTracker::Input {
Node returnOf(Node callable, SummaryComponent return) {
return = FlowSummary::SummaryComponent::return() and
// `result` should be the return value of a callable expresion (lambda or function) referenced by `callable`
// `result` should be the return value of a callable expression (lambda or function) referenced by `callable`
result.asCfgNode() =
callable.getALocalSource().asExpr().(CallableExpr).getInnerScope().getAReturnValueFlowNode()
}