aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaudio B. <claudiob@users.noreply.github.com>2015-08-13 22:33:57 -0700
committerClaudio B. <claudiob@users.noreply.github.com>2015-08-13 22:33:57 -0700
commit9c0b4081765093096bee06ff30809f1cb7076d78 (patch)
tree137657e30ef47c82cc7b4a33a4314bdc4830b20f
parent95a5d177cc796bb801320c60e91e4374e3c7570d (diff)
parent8e94137a121031eda5fa0083b96cb9bc4b4f7aa2 (diff)
downloadrails-9c0b4081765093096bee06ff30809f1cb7076d78.tar.gz
rails-9c0b4081765093096bee06ff30809f1cb7076d78.tar.bz2
rails-9c0b4081765093096bee06ff30809f1cb7076d78.zip
Merge pull request #21225 from brooksreese/sql_is_made_up_of_statements
[ci skip] SQL is written using statements, not sentences
-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 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 (