aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_basics.md
diff options
context:
space:
mode:
authorGannon McGibbon <gannon.mcgibbon@gmail.com>2019-02-13 17:46:02 -0500
committerGannon McGibbon <gannon.mcgibbon@gmail.com>2019-02-13 19:16:52 -0500
commit2987f34ee14d36f683de838d1b404078db14e406 (patch)
tree263e3cf74890196120b8f8b65d694db3b96b9a82 /guides/source/active_record_basics.md
parent840f55567191c96bdf4250a339759dbb532d351e (diff)
downloadrails-2987f34ee14d36f683de838d1b404078db14e406.tar.gz
rails-2987f34ee14d36f683de838d1b404078db14e406.tar.bz2
rails-2987f34ee14d36f683de838d1b404078db14e406.zip
Reword RDBMS note in ActiveRecord basics
[ci skip]
Diffstat (limited to 'guides/source/active_record_basics.md')
-rw-r--r--guides/source/active_record_basics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md
index b0d4bbd2c0..4cf4111bf0 100644
--- a/guides/source/active_record_basics.md
+++ b/guides/source/active_record_basics.md
@@ -45,7 +45,7 @@ relationships of the objects in an application can be easily stored and
retrieved from a database without writing SQL statements directly and with less
overall database access code.
-NOTE: If you are not familiar enough with relational database management systems (RDBMS) or structured query language (SQL), please go through [this tutorial](https://www.w3schools.com/sql/default.asp) (or [this one](http://www.sqlcourse.com/)) or study them by other means. Understanding how relational databases work is crucial to understanding Active Records and Rails in general.
+NOTE: Basic knowledge of relational database management systems (RDBMS) and structured query language (SQL) is helpful in order to fully understand Active Record. Please refer to [this tutorial](https://www.w3schools.com/sql/default.asp) (or [this one](http://www.sqlcourse.com/)) or study them by other means if you would like to learn more.
### Active Record as an ORM Framework