diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2015-03-15 11:31:40 -0400 |
---|---|---|
committer | Arthur Nogueira Neves <github@arthurnn.com> | 2015-03-15 11:31:40 -0400 |
commit | 575839d75fa85731facb99489e53b45f5f041b51 (patch) | |
tree | ed1681b7b957b5ef24aaf65bb948fc9eba06262b /guides | |
parent | 51660f0191a7c71ce298c71e7366ebab55be729c (diff) | |
parent | 45f307fbbfcbbedb443874991337e29a94dabe79 (diff) | |
download | rails-575839d75fa85731facb99489e53b45f5f041b51.tar.gz rails-575839d75fa85731facb99489e53b45f5f041b51.tar.bz2 rails-575839d75fa85731facb99489e53b45f5f041b51.zip |
Merge pull request #19342 from yui-knk/fix/missed_link
[ci skip] Fix dead link
Diffstat (limited to 'guides')
-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 bd8cdf62f2..514bec4bf6 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -20,7 +20,7 @@ After reading this guide, you will know: What is Active Record? ---------------------- -Active Record is the M in [MVC](getting_started.html#the-mvc-architecture) - the +Active Record is the M in [MVC](http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller) - the model - which is the layer of the system responsible for representing business data and logic. Active Record facilitates the creation and use of business objects whose data requires persistent storage to a database. It is an |