Skip to content

Commit dcbca43

Browse files
Merge pull request ryanmcdermott#11 from Yahkob/patch-4
add missing commas in objects
2 parents e560b13 + ce30644 commit dcbca43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ function createMenu(title, body, buttonText, cancellable) {
221221
var menuConfig = {
222222
title: 'Foo',
223223
body: 'Bar',
224-
buttonText: 'Baz'
224+
buttonText: 'Baz',
225225
cancellable: true
226226
}
227227

@@ -458,7 +458,7 @@ function writeForumComment(subject = 'No subject', body = 'No text') {
458458
var menuConfig = {
459459
title: null,
460460
body: 'Bar',
461-
buttonText: null
461+
buttonText: null,
462462
cancellable: true
463463
}
464464

@@ -478,7 +478,7 @@ createMenu(menuConfig);
478478
var menuConfig = {
479479
title: null,
480480
body: 'Bar',
481-
buttonText: null
481+
buttonText: null,
482482
cancellable: true
483483
}
484484

0 commit comments

Comments
 (0)