From b333d62d1bb5c46d09cdd2635f82f282d6df000a Mon Sep 17 00:00:00 2001 From: Martin Carel Date: Wed, 29 May 2013 16:19:01 -0400 Subject: [PATCH] readme: changes exception name so that it's the same as in the code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e4bae3..d879aa8 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ class PeopleController < ActionController::Base end # This will pass with flying colors as long as there's a person key in the parameters, otherwise - # it'll raise a ActionController::MissingParameter exception, which will get caught by + # it'll raise a ActionController::ParameterMissing exception, which will get caught by # ActionController::Base and turned into that 400 Bad Request reply. def update person = current_account.people.find(params[:id])