aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAkshay Khole <akshay@reversehack.in>2013-05-04 15:53:18 +0530
committerAkshay Khole <akshay@reversehack.in>2013-05-04 15:53:18 +0530
commit92a9ffd8586468d8e954051cb9c6dd6a83df9f92 (patch)
tree2aebd0ad5e4983cae07f46fc0389544c3ffebf53 /guides
parent7ce80352527d9e54f7d144a142ae3bef19503a8f (diff)
downloadrails-92a9ffd8586468d8e954051cb9c6dd6a83df9f92.tar.gz
rails-92a9ffd8586468d8e954051cb9c6dd6a83df9f92.tar.bz2
rails-92a9ffd8586468d8e954051cb9c6dd6a83df9f92.zip
Changing the wordings in a few places
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_model_basics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_model_basics.md b/guides/source/active_model_basics.md
index 51e332fb42..1d87646e49 100644
--- a/guides/source/active_model_basics.md
+++ b/guides/source/active_model_basics.md
@@ -14,7 +14,7 @@ Active Model is a library containing various modules used in developing framewor
### AttributeMethods
-The AttributeMethods module can add custom prefixes and suffixes on methods of a class. It is used by defining the prefixes and suffixes, which methods on the object will use them.
+The AttributeMethods module can add custom prefixes and suffixes on methods of a class. It is used by defining the prefixes and suffixes and which methods on the object will use them.
```ruby
class Person
@@ -69,7 +69,7 @@ end
### Conversion
-If a class defines `persisted?` and `id` methods then you can include `Conversion` module in that class and you can able to call Rails conversion methods to objects of that class.
+If a class defines `persisted?` and `id` methods, then you can include the `Conversion` module in that class and call the Rails conversion methods on objects of that class.
```ruby
class Person