diff options
author | Brooks Reese <brooksreese@gmail.com> | 2015-08-10 09:49:28 -0500 |
---|---|---|
committer | Brooks Reese <brooksreese@gmail.com> | 2015-08-10 09:49:28 -0500 |
commit | c939bb7e8ad2d524d4dbf9e90871f9b5f55a25d4 (patch) | |
tree | ec06d638636ca159aadfa6ebe24984fad6e0c2e5 | |
parent | 8d70f40da5d358b33e90c2c1c9ece115bbb6c831 (diff) | |
download | rails-c939bb7e8ad2d524d4dbf9e90871f9b5f55a25d4.tar.gz rails-c939bb7e8ad2d524d4dbf9e90871f9b5f55a25d4.tar.bz2 rails-c939bb7e8ad2d524d4dbf9e90871f9b5f55a25d4.zip |
[ci skip] Modify introduction text and bullets to be consistent with other guides
-rw-r--r-- | guides/source/active_model_basics.md | 10 |
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. -------------------------------------------------------------------------------- |