diff options
author | Xavier Noria <fxn@hashref.com> | 2019-03-26 09:49:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-26 09:49:13 +0100 |
commit | 08a435fa8c2307e78436eeaad43bfae7a54b2ab4 (patch) | |
tree | 33786d77aa6c682aad076cee6d9bb7e865fea310 /guides/source | |
parent | 5917e50382b05913e695c414fb0139d43a7d6d16 (diff) | |
parent | 3c7ab1a45a3bc3e1611836e06de3503c1c9ac993 (diff) | |
download | rails-08a435fa8c2307e78436eeaad43bfae7a54b2ab4.tar.gz rails-08a435fa8c2307e78436eeaad43bfae7a54b2ab4.tar.bz2 rails-08a435fa8c2307e78436eeaad43bfae7a54b2ab4.zip |
Merge pull request #35756 from sergioro9/patch-1
Grammar error
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/command_line.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index 04c8352b90..ddb30a3aec 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -606,7 +606,7 @@ $ rails "task_name[value 1]" # entire argument string should be quoted $ rails db:nothing ``` -NOTE: If your need to interact with your application models, perform database queries, and so on, your task should depend on the `environment` task, which will load your application code. +NOTE: If you need to interact with your application models, perform database queries, and so on, your task should depend on the `environment` task, which will load your application code. The Rails Advanced Command Line ------------------------------- |