Remove trailing commas in desktop environment docs
authorThomas Tuts <thomas.tuts@gmail.com>
Tue, 9 Jun 2015 16:15:30 +0000 (18:15 +0200)
committerThomas Tuts <thomas.tuts@gmail.com>
Tue, 9 Jun 2015 16:15:30 +0000 (18:15 +0200)
docs/tutorial/desktop-environment-integration.md

index b67b252..5dee6fd 100644 (file)
@@ -70,9 +70,9 @@ var dockMenu = Menu.buildFromTemplate([
   { label: 'New Window', click: function() { console.log('New Window'); } },
   { label: 'New Window with Settings', submenu: [
     { label: 'Basic' },
-    { label: 'Pro'},
+    { label: 'Pro'}
   ]},
-  { label: 'New Command...'},
+  { label: 'New Command...'}
 ]);
 app.dock.setMenu(dockMenu);
 ```
@@ -119,7 +119,7 @@ app.setUserTasks([
     iconPath: process.execPath,
     iconIndex: 0,
     title: 'New Window',
-    description: 'Create a new window',
+    description: 'Create a new window'
   }
 ]);
 ```