aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib/active_resource/schema.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activeresource/lib/active_resource/schema.rb')
-rw-r--r--activeresource/lib/active_resource/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activeresource/lib/active_resource/schema.rb b/activeresource/lib/active_resource/schema.rb
index 498b00ffef..6f0b229145 100644
--- a/activeresource/lib/active_resource/schema.rb
+++ b/activeresource/lib/active_resource/schema.rb
@@ -15,13 +15,13 @@ module ActiveResource # :nodoc:
# unlike an Active Record TableDefinition (on which it is based).
# It provides a set of convenience methods for people to define their
# schema using the syntax:
- # define_schema do |s|
+ # schema do |s|
# s.string :foo
# s.integer :bar
# end
#
# The schema stores the name and type of each attribute. That is then
- # read out by the define_schema method to populate the actual
+ # read out by the schema method to populate the actual
# Resource's schema
def initialize
@attrs = {}