Skip to content

Commit 4ceb722

Browse files
committed
Fix semicolon error
1 parent a6f2242 commit 4ceb722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/margin.cson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Append a SVG with the margin convention":
33
prefix: "margin"
44
body: """
5-
var margin = {top: ${1:20}, right: ${2:10}, bottom: ${3:20}, left: ${4:10}};
5+
var margin = {top: ${1:20}, right: ${2:10}, bottom: ${3:20}, left: ${4:10}},
66
width = ${5:960} - margin.left - margin.right,
77
height = ${6:500} - margin.top - margin.bottom;
88

0 commit comments

Comments
 (0)