Skip to content

Commit

Permalink
Add missing closing parenthesis in rule actual_parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roldak committed Sep 26, 2023
1 parent 8aa6eef commit a4dda01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lkql_checker/share/lkql/actual_parameters.lkql
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fun check_actual(name, expected) =
@check(message="actual parameter mismatch",
category="Style", subcategory="Programming Practice")
fun actual_parameters(node, forbidden=[]) =
node is AssocList(parent is call@CallExpr(p_is_call() is true)
node is AssocList(parent is call@CallExpr(p_is_call() is true))
when {
val n = call.f_name.p_referenced_decl()?.
p_canonical_fully_qualified_name?();
Expand Down

0 comments on commit a4dda01

Please sign in to comment.