Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
semperos committed Nov 1, 2024
1 parent 3978ad7 commit 16c00c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ari/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ func (cliSystem *CliSystem) replEvalGoal(line string, autoInvoke bool) {
if !found {
panic("developer error: The ari.c global should be assigned during global and function registration")
}
value = value.Apply(goalContext, []goal.V{this})
value = value.Apply(goalContext, this)
if value.IsError() {
formatREPLError(newExitError(goalContext, value.Error()))
return
Expand Down

0 comments on commit 16c00c4

Please sign in to comment.