AWDWR : Generating URL

From the book:

blog_admin_url :controller => ‘users’, :action => ‘list’

As we’re only using options to give the named parameters values, we could also have used.

blog_admin_url ‘users’, ‘list’

In the second form the order of the parameters matters right?

Yes