Skip to content

Commit b23666e

Browse files
authored
Fix typo, the first of many
1 parent e850aef commit b23666e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2020-06-24-the-command-pattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def self.run(**kwargs)
249249
payload = command.execute
250250
Result.new(success: true, payload: payload)
251251
else
252-
Result.new(success: true, payload: command.errors)
252+
Result.new(success: false, payload: command.errors)
253253
end
254254
end
255255
```

0 commit comments

Comments
 (0)