Skip to content

Commit 1f23b82

Browse files
committed
Merge pull request #65 from fredj/patch-1
Fix js code in README.md (commas)
2 parents 60b0dcf + 2e08f94 commit 1f23b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Or if you prefer OAuth, it looks like this:
3333

3434
```js
3535
var github = new Github({
36-
token: "OAUTH_TOKEN"
36+
token: "OAUTH_TOKEN",
3737
auth: "oauth"
3838
});
3939
```
@@ -70,7 +70,7 @@ var pull = {
7070
title: message,
7171
body: "This pull request has been automatically generated by Prose.io.",
7272
base: "gh-pages",
73-
head: "michael" + ":" + "prose-patch",
73+
head: "michael" + ":" + "prose-patch"
7474
};
7575
repo.createPullRequest(pull, function(err, pullRequest) {});
7676
```

0 commit comments

Comments
 (0)