aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/README.rdoc
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2014-06-01 11:46:37 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2014-06-01 11:46:37 +0000
commit4ae90a7dd8f9857f5d8c90c0135dd873f90e6957 (patch)
tree59af5d115cf2cafa7ad401ed288fee5c363e4612 /activerecord/README.rdoc
parent26c38fe022227536489482cd07de623554546b21 (diff)
parent1913f1ef90e44f0977e1278cfafd8131f9fa58a3 (diff)
downloadrails-4ae90a7dd8f9857f5d8c90c0135dd873f90e6957.tar.gz
rails-4ae90a7dd8f9857f5d8c90c0135dd873f90e6957.tar.bz2
rails-4ae90a7dd8f9857f5d8c90c0135dd873f90e6957.zip
Merge branch 'master' of github.com:rails/docrails
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 c813b22f3b..969e97913d 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.