build: fix linting issue in docs (#24710)

This commit is contained in:
Samuel Attard 2020-07-23 12:27:00 -07:00 committed by GitHub
parent 00fc8066de
commit 2162eeb609
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,20 +45,20 @@ will be started with the path of the file added as a command line argument.
You can add menu items to access and clear recent documents by adding the following code snippet to your menu's template. You can add menu items to access and clear recent documents by adding the following code snippet to your menu's template.
```javascript ```json
{ {
"submenu":[ "submenu":[
{ {
"label":"Open Recent", "label":"Open Recent",
"role":"recentdocuments", "role":"recentdocuments",
"submenu":[ "submenu":[
{ {
"label":"Clear Recent", "label":"Clear Recent",
"role":"clearrecentdocuments" "role":"clearrecentdocuments"
} }
] ]
} }
] ]
} }
``` ```