aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-21 23:30:26 +0200
committerXavier Noria <fxn@hashref.com>2008-05-21 23:39:07 +0200
commit46f0836d60da3e1e3508b1e03cd123cf8c58df6e (patch)
treea49c0c17e85f54fab0bfab76ee2b7f4c80323779
parent11f0fd5c6febed712194b0494b2e4de85b131c26 (diff)
downloadrails-46f0836d60da3e1e3508b1e03cd123cf8c58df6e.tar.gz
rails-46f0836d60da3e1e3508b1e03cd123cf8c58df6e.tar.bz2
rails-46f0836d60da3e1e3508b1e03cd123cf8c58df6e.zip
gsub("ActionPack", "Action Pack")
-rw-r--r--actionpack/lib/action_controller/mime_type.rb2
-rw-r--r--activeresource/lib/active_resource/base.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/mime_type.rb b/actionpack/lib/action_controller/mime_type.rb
index 1d6c8e704b..fa123f7808 100644
--- a/actionpack/lib/action_controller/mime_type.rb
+++ b/actionpack/lib/action_controller/mime_type.rb
@@ -158,7 +158,7 @@ module Mime
end
end
- # Returns true if ActionPack should check requests using this Mime Type for possible request forgery. See
+ # Returns true if Action Pack should check requests using this Mime Type for possible request forgery. See
# ActionController::RequestForgerProtection.
def verify_request?
!@@unverifiable_types.include?(to_sym)
diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb
index 961f5e6f7f..6e0d7e9d1d 100644
--- a/activeresource/lib/active_resource/base.rb
+++ b/activeresource/lib/active_resource/base.rb
@@ -701,7 +701,7 @@ module ActiveResource
attributes[self.class.primary_key] = id
end
- # Allows ActiveResource objects to be used as parameters in ActionPack URL generation.
+ # Allows ActiveResource objects to be used as parameters in Action Pack URL generation.
def to_param
id && id.to_s
end