Skip to content

Commit 55f19b6

Browse files
committed
Merge pull request reduxjs#1665 from joshburgess/patch-1
Use object literal property value shorthand consistently
2 parents a04013e + 14d4a51 commit 55f19b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/async/actions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function requestPosts(reddit) {
2929
function receivePosts(reddit, json) {
3030
return {
3131
type: RECEIVE_POSTS,
32-
reddit: reddit,
32+
reddit,
3333
posts: json.data.children.map(child => child.data),
3434
receivedAt: Date.now()
3535
}

0 commit comments

Comments
 (0)