aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorHendy Tanata <htanata@gmail.com>2012-11-27 15:46:18 +0800
committerHendy Tanata <htanata@gmail.com>2012-11-27 16:24:22 +0800
commit8f43c9afc47773127d6d74d5fd4ad4a26af98ecf (patch)
treedbd39e08155b3e1648d3371bcc7353891c1dfcea /guides/source
parent266d844244d97363feb691baa852f50b5aa677e2 (diff)
downloadrails-8f43c9afc47773127d6d74d5fd4ad4a26af98ecf.tar.gz
rails-8f43c9afc47773127d6d74d5fd4ad4a26af98ecf.tar.bz2
rails-8f43c9afc47773127d6d74d5fd4ad4a26af98ecf.zip
Set fixed-width style where appropriate on Getting Started guide.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 78af810af9..6d837538d6 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -704,7 +704,7 @@ Destroy) operations, data validation, as well as sophisticated search support
and the ability to relate multiple models to one another.
Rails includes methods to help you secure some of your model fields. The Rails
-model generator added the attr_accessible line to your model file. This change
+model generator added the `attr_accessible` line to your model file. This change
will ensure that all changes made through HTML forms can edit the content of
the text and title fields. Accessible attributes and the mass assignment problem is covered in
details in the [Security guide](security.html#mass-assignment)
@@ -1286,7 +1286,7 @@ this way:
* One post can have many comments.
In fact, this is very close to the syntax that Rails uses to declare this
-association. You've already seen the line of code inside the Comment model that
+association. You've already seen the line of code inside the `Comment` model that
makes each comment belong to a Post:
```ruby