From 314346114854b3728aa0a899c12d3c6890067b2b Mon Sep 17 00:00:00 2001 From: Mike Foley Date: Tue, 9 Sep 2014 08:44:36 -0700 Subject: [PATCH] Change variable name in Ruby alias_method_chain `method_name` is more clear than `name`, and follows the style of the other snippets. --- snippets/ruby.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/ruby.snippets b/snippets/ruby.snippets index dce1861..ba761fd 100644 --- a/snippets/ruby.snippets +++ b/snippets/ruby.snippets @@ -210,7 +210,7 @@ snippet defds snippet am alias_method :${1:new_name}, :${0:old_name} snippet amc - alias_method_chain :${1:name}, :${0:feature} + alias_method_chain :${1:method_name}, :${0:feature} snippet app if __FILE__ == $PROGRAM_NAME ${0}