1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2025-12-19 12:28:11 +01:00

Removed extraneous commas.

This commit is contained in:
Ben Orenstein
2010-01-13 11:26:59 -05:00
parent b2937829c0
commit 199e86cac0

View File

@@ -279,15 +279,15 @@ snippet sub
snippet sca
scan(${1:/pattern/}) { |${2:match}| ${3} }
snippet max
max { |a, b|, ${1} }
max { |a, b| ${1} }
snippet min
min { |a, b|, ${1} }
min { |a, b| ${1} }
snippet par
partition { |${1:e}|, ${2} }
partition { |${1:e}| ${2} }
snippet rej
reject { |${1:e}|, ${2} }
reject { |${1:e}| ${2} }
snippet sel
select { |${1:e}|, ${2} }
select { |${1:e}| ${2} }
snippet lam
lambda { |${1:args}| ${2} }
snippet do