From b83eee6068e0650b500fff6f0a70bf9e1a763a86 Mon Sep 17 00:00:00 2001 From: kiith-sa Date: Fri, 2 Nov 2012 18:40:53 +0100 Subject: [PATCH] Fixed bugs in "catch" and "fdoc" snippets. --- UltiSnips/d.snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UltiSnips/d.snippets b/UltiSnips/d.snippets index 10bb2e4..9c9b852 100644 --- a/UltiSnips/d.snippets +++ b/UltiSnips/d.snippets @@ -335,7 +335,7 @@ finally endsnippet snippet catch "catch (catch)" b -catch(${1}:Exception) +catch(${1}Exception) { ${2:/*handle exception*/} } @@ -498,7 +498,7 @@ snippet fdoc "function ddoc block (fdoc)" b /// /// ${6:Returns: ${7:return value}} /// -/// ${8:Throws: ${8}Exception ${9}} +/// ${8:Throws: ${9}Exception ${10}} endsnippet snippet Par "Params (Par)"