Fixed final switch in the UltiSnippets snippet

This commit is contained in:
rsw0x 2014-05-28 06:48:18 -04:00
parent 5470b2f348
commit 0100f9c7ea

View File

@ -151,7 +151,7 @@ switch(${1:/*var*/})
endsnippet endsnippet
snippet fsw "final switch (fsw)" snippet fsw "final switch (fsw)"
switch(${1:/*var*/}) final switch(${1:/*var*/})
{ {
case ${2:/*value*/}: case ${2:/*value*/}:
${3} ${3}