Skip to content

Commit 75850d7

Browse files
committed
Merge pull request #921 from stoikerty/patch-2
add missing semicolon
2 parents 9694c34 + 9ae4905 commit 75850d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/advanced/ExampleRedditAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function fetchPosts(reddit) {
6767
return fetch(`http://www.reddit.com/r/${reddit}.json`)
6868
.then(req => req.json())
6969
.then(json => dispatch(receivePosts(reddit, json)));
70-
}
70+
};
7171
}
7272

7373
function shouldFetchPosts(state, reddit) {

0 commit comments

Comments
 (0)