Merge pull request #5 from kamilduda/feature/vs-code-snippets-plantuml-notes

Fix commas in json
pull/77/head
Kamil Duda 6 years ago committed by GitHub
commit d340e38f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -380,7 +380,7 @@
],
"body": [
"note left of ${1:element}",
"\t${3:content}"
"\t${3:content}",
"end note"
],
"description": "Add a note left of an element."
@ -392,7 +392,7 @@
],
"body": [
"note right of ${1:element}",
"\t${3:content}"
"\t${3:content}",
"end note"
],
"description": "Add a note right of an element."
@ -404,7 +404,7 @@
],
"body": [
"note top of ${1:element}",
"\t${3:content}"
"\t${3:content}",
"end note"
],
"description": "Add a note above an element."
@ -416,7 +416,7 @@
],
"body": [
"note bottom of ${1:element}",
"\t${3:content}"
"\t${3:content}",
"end note"
],
"description": "Add a note below an element."

Loading…
Cancel
Save