From: Brian Buckley Date: 2006-08-30T08:28:51+09:00 Subject: Hash#inject argument syntax The code below works but I do not understand the "(key, value)" parenthesis syntax. I have not seen it before. Could someone explain? --Brian (from Rails' active_support) class Hash def symbolize_keys inject({}) do |options, (key, value)| options[key.to_sym] = value options end end end (above code from Rails' active_support)