diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb
index 898425bbee..679945c11f 100644
--- a/actionpack/lib/action_controller/resources.rb
+++ b/actionpack/lib/action_controller/resources.rb
@@ -234,9 +234,10 @@ def initialize(entity, options)
# * :new - same as :collection, but for actions that operate on the new resource action.
# * :controller - specify the controller name for the routes.
# * :singular - specify the singular name used in the member routes.
- # * :path_prefix - set a prefix to the routes with required route variables.
# * :requirements - set custom routing parameter requirements.
# * :conditions - specify custom routing recognition conditions. Resources sets the :method value for the method-specific routes.
+ # * :path_prefix - set a prefix to the routes with required route variables.
+ #
# Weblog comments usually belong to a post, so you might use resources like:
#
# map.resources :articles