url error rails 2.3.5

I have the routes set up for 'equipment', standard scaffold. When I try to go to equipment/new this error pops up:

Showing app/views/equipment/new.html.erb where line #3 raised:

equipment_url failed to generate from {:action=>"show", :controller=>"equipment"} - you may have ambiguous routes, or you may need to supply additional parameters for this route. content_url has the following required parameters: ["equipment", :id] - are they all satisfied?

Not sure why it is trying to go to the show action......

Ok, found the issue. equipment is not pluralized anywhere and the routes were having issues. Had to do this:

map.resources :equipment, :singular => :equipment