aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2019-01-17 01:06:35 +0000
committerbogdanvlviv <bogdanvlviv@gmail.com>2019-01-17 01:45:54 +0000
commit4aa9935c2f8fbeeb4e123945eefb85f714372fb2 (patch)
tree481c18647e84c9de2b9374596b7ed9e6024a86ea /railties/lib
parent481192171e67c2aad1dc4a3de113a61cca231674 (diff)
downloadrails-4aa9935c2f8fbeeb4e123945eefb85f714372fb2.tar.gz
rails-4aa9935c2f8fbeeb4e123945eefb85f714372fb2.tar.bz2
rails-4aa9935c2f8fbeeb4e123945eefb85f714372fb2.zip
Add `config.credentials.content_path` and `config.credentials.key_path` to the guide
- Fix some typos Follow up #33962
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/commands/credentials/USAGE4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/commands/credentials/USAGE b/railties/lib/rails/commands/credentials/USAGE
index d235592f46..c8d3fb9eda 100644
--- a/railties/lib/rails/commands/credentials/USAGE
+++ b/railties/lib/rails/commands/credentials/USAGE
@@ -42,7 +42,7 @@ from leaking.
=== Environment Specific Credentials
The `credentials` command supports passing an `--environment` option to create an
-environment specific override. That override will takes precedence over the
+environment specific override. That override will take precedence over the
global `config/credentials.yml.enc` file when running in that environment. So:
rails credentials:edit --environment development
@@ -54,5 +54,5 @@ doesn't exist.
The encryption key can also be put in `ENV["RAILS_MASTER_KEY"]`, which takes
precedence over the file encryption key.
-In addition to that, the default credentials lookup paths can be overriden through
+In addition to that, the default credentials lookup paths can be overridden through
`config.credentials.content_path` and `config.credentials.key_path`.