aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_model_basics.md
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2014-10-05 18:28:42 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2014-10-05 18:28:42 +0530
commit391f5dc1767d15f44b33be252325b657e0e8ce7e (patch)
tree1c6c7702441c83793264e9ec451dd8b9e9a59863 /guides/source/active_model_basics.md
parentb56d3adf9b221ba35f18ed5be1e9fc251123e5a0 (diff)
downloadrails-391f5dc1767d15f44b33be252325b657e0e8ce7e.tar.gz
rails-391f5dc1767d15f44b33be252325b657e0e8ce7e.tar.bz2
rails-391f5dc1767d15f44b33be252325b657e0e8ce7e.zip
Fix typo in Active Model guide
- instrospection -> introspection. - [ci skip]
Diffstat (limited to 'guides/source/active_model_basics.md')
-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 ccbb0d7489..a520b91a4d 100644
--- a/guides/source/active_model_basics.md
+++ b/guides/source/active_model_basics.md
@@ -266,7 +266,7 @@ end
When including `ActiveModel::Model` you get some features like:
-- model name instrospection
+- model name introspection
- conversions
- translations
- validations
@@ -511,7 +511,7 @@ features out of the box.
`ActiveModel::SecurePassword` provides a way to securely store any
password in an encrypted form. On including this module, a
-`has_secure_password` class method is provided which defines
+`has_secure_password` class method is provided which defines
an accessor named `password` with certain validations on it.
#### Requirements