aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/README.rdoc
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-05-12 08:37:37 -0700
committerZachary Scott <e@zzak.io>2014-05-12 08:37:37 -0700
commitdf36a3b37200dadf3a0ca121476d80dc448462db (patch)
treebd4057acc2cfbb0d71e083aa516fd4de0da3f87b /activerecord/README.rdoc
parent9d5bc3c24048543d071f2c813210afa937460f14 (diff)
downloadrails-df36a3b37200dadf3a0ca121476d80dc448462db.tar.gz
rails-df36a3b37200dadf3a0ca121476d80dc448462db.tar.bz2
rails-df36a3b37200dadf3a0ca121476d80dc448462db.zip
:scissors:
Diffstat (limited to 'activerecord/README.rdoc')
-rw-r--r--activerecord/README.rdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/README.rdoc b/activerecord/README.rdoc
index 335f0e083f..7d00d86023 100644
--- a/activerecord/README.rdoc
+++ b/activerecord/README.rdoc
@@ -19,9 +19,9 @@ A short rundown of some of the major features:
class Product < ActiveRecord::Base
end
-
+
{Learn more}[link:classes/ActiveRecord/Base.html]
-
+
The Product class is automatically mapped to the table named "products",
which might look like this:
@@ -33,7 +33,7 @@ which might look like this:
This would also define the following accessors: `Product#name` and
`Product#name=(new_name)`.
-
+
* Associations between objects defined by simple class methods.