aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-01-24 09:11:18 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-01-24 09:11:18 +0900
commite08e7453457395680607726a56c97e8a01f3bcd0 (patch)
tree7fe60dcc824382cfc1756cff4e63bb8e94fb4375 /guides
parent97e9331317a15dbd4a865daaa1d5255a0820597e (diff)
downloadrails-e08e7453457395680607726a56c97e8a01f3bcd0.tar.gz
rails-e08e7453457395680607726a56c97e8a01f3bcd0.tar.bz2
rails-e08e7453457395680607726a56c97e8a01f3bcd0.zip
tweaks for #31704 [ci skip]
* rDBMS -> RDBMS. There is only place using rDBMS. * a SQL -> an SQL
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_record_basics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md
index 859679d53a..2f85b765a3 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: 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.
### Active Record as an ORM Framework
@@ -144,7 +144,7 @@ end
This will create a `Product` model, mapped to a `products` table at the
database. By doing this you'll also have the ability to map the columns of each
row in that table with the attributes of the instances of your model. Suppose
-that the `products` table was created using a SQL (or one of its extensions) statement like:
+that the `products` table was created using an SQL (or one of its extensions) statement like:
```sql
CREATE TABLE products (