aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/README.rdoc
diff options
context:
space:
mode:
authorManish shrivastava <er.manishshrivastava@gmail.com>2015-05-20 19:15:33 +0530
committerManish shrivastava <er.manishshrivastava@gmail.com>2015-05-20 19:15:33 +0530
commit6252d0aece57fbdc4e424e348fb301a22b6262b3 (patch)
tree2533747ee20991d284183f404e8b988e11a0099e /activerecord/README.rdoc
parent879f3169952a1a37f1ef4b7a8cc6383ac536ef5d (diff)
downloadrails-6252d0aece57fbdc4e424e348fb301a22b6262b3.tar.gz
rails-6252d0aece57fbdc4e424e348fb301a22b6262b3.tar.bz2
rails-6252d0aece57fbdc4e424e348fb301a22b6262b3.zip
updated Inline format at activerecord rdoc
For Inline formats, changed ` (single backticks) to <tt> tag at active record rdoc as single backticks (`) don't work with rdoc. for inline format.
Diffstat (limited to 'activerecord/README.rdoc')
-rw-r--r--activerecord/README.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/README.rdoc b/activerecord/README.rdoc
index 85d807933a..049c5d2b3b 100644
--- a/activerecord/README.rdoc
+++ b/activerecord/README.rdoc
@@ -31,8 +31,8 @@ which might look like this:
PRIMARY KEY (id)
);
-This would also define the following accessors: `Product#name` and
-`Product#name=(new_name)`.
+This would also define the following accessors: <tt>Product#name</tt> and
+<tt>Product#name=(new_name)</tt>.
* Associations between objects defined by simple class methods.