1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix incorrect code example

This commit is contained in:
Vijay Dev 2011-11-07 17:58:03 +05:30
parent 6a29ea04ae
commit 6ac56ac93b

View file

@ -182,7 +182,7 @@ module ActionController #:nodoc:
#
# def index
# @people = Person.all
# respond_with(@person)
# respond_with(@people)
# end
# end
#