Fixed bugs in "catch" and "fdoc" snippets.

This commit is contained in:
kiith-sa 2012-11-02 18:40:53 +01:00
parent a004ad3dd0
commit b83eee6068

View File

@ -335,7 +335,7 @@ finally
endsnippet endsnippet
snippet catch "catch (catch)" b snippet catch "catch (catch)" b
catch(${1}:Exception) catch(${1}Exception)
{ {
${2:/*handle exception*/} ${2:/*handle exception*/}
} }
@ -498,7 +498,7 @@ snippet fdoc "function ddoc block (fdoc)" b
/// ///
/// ${6:Returns: ${7:return value}} /// ${6:Returns: ${7:return value}}
/// ///
/// ${8:Throws: ${8}Exception ${9}} /// ${8:Throws: ${9}Exception ${10}}
endsnippet endsnippet
snippet Par "Params (Par)" snippet Par "Params (Par)"