Add a missing closing double quote in HTML

This commit is contained in:
Thomas Szymanski 2015-01-31 18:18:59 +01:00
parent 80adcd3418
commit f4d267dd63

View File

@ -17,7 +17,7 @@ snippet label_and_input
endsnippet
snippet input
<input type="${1:text}" value="${2}" name="${3}"${4: id="${5:$3}}/>${7}
<input type="${1:text}" value="${2}" name="${3}"${4: id="${5:$3}"}/>${7}
endsnippet
snippet submit