diff options
author | Brooks Reese <brooksreese@gmail.com> | 2015-08-13 12:43:49 -0500 |
---|---|---|
committer | Brooks Reese <brooksreese@gmail.com> | 2015-08-13 12:43:49 -0500 |
commit | 8e94137a121031eda5fa0083b96cb9bc4b4f7aa2 (patch) | |
tree | 95d156d1af821d8745d13d087098b2d5bf31ebdc /guides/source | |
parent | e50fe85180648be0c4216bd0111f05be1df0988a (diff) | |
download | rails-8e94137a121031eda5fa0083b96cb9bc4b4f7aa2.tar.gz rails-8e94137a121031eda5fa0083b96cb9bc4b4f7aa2.tar.bz2 rails-8e94137a121031eda5fa0083b96cb9bc4b4f7aa2.zip |
[ci skip] SQL is written using statements, not sentences
Diffstat (limited to 'guides/source')
-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 f4baf92228..dafbe17bbd 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -142,7 +142,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 an SQL sentence like: +that the `products` table was created using an SQL statement like: ```sql CREATE TABLE products ( |