Default image_tag folder

Hey, guys. In documentation i read: "By default, files are loaded from public/images". I add for example <%= image_tag "logo.gif" %>

When i check html code in browser i see next: <img alt="Logo" src="/assets/public/images/logo.gif">. Why folder assets? The default should have been <img alt="Logo" src="public/images/logo.gif">?

The docs are out of date, have a look at The Asset Pipeline — Ruby on Rails Guides for the new paths.

Colin

Thanks)