Improve console.timeStamp snippet

The console.timeStamp method is camelCased, so I made the description
match the contents. Additionally, there was a missing semicolon at the
end of the line that I added.
This commit is contained in:
Joe Lencioni 2014-01-05 08:01:00 -08:00
parent bf0965fb6e
commit 3c461925b9

View File

@ -135,8 +135,8 @@ ${VISUAL}$0
console.timeEnd("$1"); console.timeEnd("$1");
endsnippet endsnippet
snippet ctimestamp "console.timestamp" snippet ctimestamp "console.timeStamp"
console.timeStamp("${1:label}") console.timeStamp("${1:label}");
endsnippet endsnippet
snippet ctrace "console.trace" snippet ctrace "console.trace"