Skip to content

Commit

Permalink
Fixed incorrect parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoeilers committed Sep 1, 2024
1 parent ec5c49d commit 779ecbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/scala/rules/Consumer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ object consumer extends ConsumptionRules {
h = h,
resource = field,
qvars = qvars,
qVarExps = qvarExps,
qvarExps = qvarExps,
formalQVars = Seq(`?r`),
formalQVarsExp = Option.when(withExp)(Seq(ast.LocalVarDecl(`?r`.id.name, ast.Ref)())),
qid = qid.name,
Expand Down Expand Up @@ -289,7 +289,7 @@ object consumer extends ConsumptionRules {
h = h,
resource = predicate,
qvars = qvars,
qVarExps = qvarExps,
qvarExps = qvarExps,
formalQVars = formalVars,
formalQVarsExp = Option.when(withExp)(predicate.formalArgs),
qid = qid.name,
Expand Down Expand Up @@ -330,7 +330,7 @@ object consumer extends ConsumptionRules {
h = h,
resource = wand,
qvars = qvars,
qVarExps = qvarExps,
qvarExps = qvarExps,
formalQVars = formalVars,
formalQVarsExp = formalVarExps,
qid = qid,
Expand Down

0 comments on commit 779ecbb

Please sign in to comment.