Merge pull request #446 from BlackIkeEagle/php-typo

php: fix do{} while snippet typo, does not end on"
This commit is contained in:
Holger Rapp 2014-09-11 06:27:48 -07:00
commit 6db93bcabf

View File

@ -14,7 +14,7 @@ endsnippet
snippet do "do"
do {
${2:// code... }
} while (${1:/* condition */});"
} while (${1:/* condition */});
endsnippet
snippet doc_f "doc_f"