In Rails document,I find that:
Person.find(1, 2, 6) # returns an array for objects with IDs in (1, 2, 6)
But when I execute this command,I got
ActiveRecord::RecordNotFound: Couldn't find all Persons with IDs (1, 2, 6)
(found 1 results, but was looking for 2)
How I got this error? My Rails version is 3.2.14