Skip to content

Commit 9d5d662

Browse files
authored
Merge pull request #582 from tijwelch/master
Fix missing whitespace in 'if' snippets
2 parents 429bd12 + 903d305 commit 9d5d662

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

snippets/if-___-else.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<snippet>
2-
<content><![CDATA[if(${1:condition}) {
2+
<content><![CDATA[if (${1:condition}) {
33
${2:// code...}
44
} else {
55
${3:// code...}

snippets/if.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<snippet>
2-
<content><![CDATA[if(${1:condition}) {
2+
<content><![CDATA[if (${1:condition}) {
33
${0:// code...}
44
}]]></content>
55
<tabTrigger>if</tabTrigger>

0 commit comments

Comments
 (0)