Skip to content

Commit

Permalink
fixes typo in Resolve example
Browse files Browse the repository at this point in the history
  • Loading branch information
jtzero committed Jan 29, 2024
1 parent 892b1d2 commit 7113f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docsite/source/effects/resolve.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CreateUser

def call(values)
name = values.values_at(:first_name, :last_name).join(' ')
user_repo.create(values.merge(name: name))
user_repo.create(**values.merge(name: name))
end
end
```
Expand Down

0 comments on commit 7113f83

Please sign in to comment.