I am newbie to ruby, and I am working on a project. In the routes.rb file, and there is some syntax I don't understand. More precisely, I can find in this file alternatively :
get :account #with a symbol
get 'notes' #with no symbol
What is the difference ? I suppose :account
should be defined elsewhere, sooner in the routing process, right ?