aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/README.rdoc
diff options
context:
space:
mode:
authorGaurish Sharma <contact@gaurishsharma.com>2014-05-04 10:40:16 +0530
committerGaurish Sharma <contact@gaurishsharma.com>2014-05-04 10:40:16 +0530
commite5ac6c8753dc11a1f9869c4fe48a11dc8a32280d (patch)
tree340ae593370ff643149cf297cef4f5f4dc0cd05d /activerecord/README.rdoc
parent668d8420dcb77f24cea87d6568b57fa659c340b0 (diff)
downloadrails-e5ac6c8753dc11a1f9869c4fe48a11dc8a32280d.tar.gz
rails-e5ac6c8753dc11a1f9869c4fe48a11dc8a32280d.tar.bz2
rails-e5ac6c8753dc11a1f9869c4fe48a11dc8a32280d.zip
Fix Formatting in AR Readme
Don't make free form text appear in code blocks [ci skip]
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 e04abe9b37..56be7b9598 100644
--- a/activerecord/README.rdoc
+++ b/activerecord/README.rdoc
@@ -20,8 +20,8 @@ A short rundown of some of the major features:
class Product < ActiveRecord::Base
end
- The Product class is automatically mapped to the table named "products",
- which might look like this:
+The Product class is automatically mapped to the table named "products",
+which might look like this:
CREATE TABLE products (
id int(11) NOT NULL auto_increment,