aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2015-08-10 16:37:09 +0100
committerAbdelkader Boudih <terminale@gmail.com>2015-08-10 16:37:09 +0100
commit942f41263152277dd5d23744a97a67e8c1a8d3d4 (patch)
treeec06d638636ca159aadfa6ebe24984fad6e0c2e5 /guides
parent8d70f40da5d358b33e90c2c1c9ece115bbb6c831 (diff)
parentc939bb7e8ad2d524d4dbf9e90871f9b5f55a25d4 (diff)
downloadrails-942f41263152277dd5d23744a97a67e8c1a8d3d4.tar.gz
rails-942f41263152277dd5d23744a97a67e8c1a8d3d4.tar.bz2
rails-942f41263152277dd5d23744a97a67e8c1a8d3d4.zip
Merge pull request #21183 from brooksreese/ar_overview_change
[ci skip] Modify introduction to be consistent with other guides
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_model_basics.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/active_model_basics.md b/guides/source/active_model_basics.md
index 97180a8414..81e2a69504 100644
--- a/guides/source/active_model_basics.md
+++ b/guides/source/active_model_basics.md
@@ -8,12 +8,12 @@ classes. Active Model allows for Action Pack helpers to interact with
plain Ruby objects. Active Model also helps build custom ORMs for use
outside of the Rails framework.
-After reading this guide, you will be able to add to plain Ruby objects:
+After reading this guide, you will know:
-* The ability to behave like an Active Record model.
-* Callbacks and validations like Active Record.
-* Serializers.
-* Integration with the Rails internationalization (i18n) framework.
+* How an Active Record model behaves.
+* How Callbacks and validations work.
+* How serializers work.
+* The Rails internationalization (i18n) framework.
--------------------------------------------------------------------------------