Skip to content

Commit

Permalink
Removed extraneous commas.
Browse files Browse the repository at this point in the history
  • Loading branch information
r00k committed Jan 13, 2010
1 parent b293782 commit 199e86c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions snippets/ruby.snippets
Expand Up @@ -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
Expand Down

0 comments on commit 199e86c

Please sign in to comment.