diff options
author | Ray Baxter <ray.baxter@gmail.com> | 2011-08-31 15:19:06 -0700 |
---|---|---|
committer | Ray Baxter <ray.baxter@gmail.com> | 2011-08-31 15:19:06 -0700 |
commit | 2422fbf6287f7d97859bc50ec1417b95b0b703d5 (patch) | |
tree | 48d476673fd1a316791bcf7a964eed888549e213 | |
parent | 27bcd962465b0e5a320be66ff1959221c8c285a2 (diff) | |
download | rails-2422fbf6287f7d97859bc50ec1417b95b0b703d5.tar.gz rails-2422fbf6287f7d97859bc50ec1417b95b0b703d5.tar.bz2 rails-2422fbf6287f7d97859bc50ec1417b95b0b703d5.zip |
make code example agree with text just above
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index d2bfcfdbb4..256df0eded 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1604,7 +1604,7 @@ action, except for +index+ and +show+, so we write that: <ruby> class PostsController < ApplicationController - http_basic_authenticate_with :name => "dhh", :password => "secret", :except => :index + http_basic_authenticate_with :name => "dhh", :password => "secret", :except => [:index, :show] # GET /posts # GET /posts.json |