diff options
author | Matthew Draper <matthew@trebex.net> | 2015-01-12 16:11:19 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2015-01-12 16:11:19 +1030 |
commit | 88308f4734129200c7c9bc49cfd0d4c0d46d405a (patch) | |
tree | 4ba14fbc6ef6c2803320888f3dcce295e76ee5fb /guides/source/active_record_basics.md | |
parent | 3adb05565c7de3ba9dd4117b8a3a631a0b238b8c (diff) | |
parent | 1cef759e1e5f672826cf332b8341f5ab35963da0 (diff) | |
download | rails-88308f4734129200c7c9bc49cfd0d4c0d46d405a.tar.gz rails-88308f4734129200c7c9bc49cfd0d4c0d46d405a.tar.bz2 rails-88308f4734129200c7c9bc49cfd0d4c0d46d405a.zip |
Merge pull request #18461 from zetsubo/patch-1
minor grammatical fix in documentation
Diffstat (limited to 'guides/source/active_record_basics.md')
-rw-r--r-- | guides/source/active_record_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md index 9d2ba328ea..76516a03df 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -62,7 +62,7 @@ Convention over Configuration in Active Record When writing applications using other programming languages or frameworks, it may be necessary to write a lot of configuration code. This is particularly true for ORM frameworks in general. However, if you follow the conventions adopted by -Rails, you'll need to write very little configuration (in some case no +Rails, you'll need to write very little configuration (in some cases no configuration at all) when creating Active Record models. The idea is that if you configure your applications in the very same way most of the time then this should be the default way. Thus, explicit configuration would be needed |