diff options
author | Manoj M J <manojmj92@gmail.com> | 2017-09-20 13:08:00 +0530 |
---|---|---|
committer | Manoj M J <manojmj92@gmail.com> | 2017-09-20 13:08:00 +0530 |
commit | 80f46653e2353a40a7175cbd6030dcf60916d6cd (patch) | |
tree | bf8488c1cc65162cc0e0db49b9c02de2c0f73592 /guides/source | |
parent | 34956f7422798f27f8926544d58771042f6f1c3a (diff) | |
download | rails-80f46653e2353a40a7175cbd6030dcf60916d6cd.tar.gz rails-80f46653e2353a40a7175cbd6030dcf60916d6cd.tar.bz2 rails-80f46653e2353a40a7175cbd6030dcf60916d6cd.zip |
Fix error message documentation
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/security.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/security.md b/guides/source/security.md index 2ac52155f8..b19a04452a 100644 --- a/guides/source/security.md +++ b/guides/source/security.md @@ -1049,7 +1049,7 @@ If you want an exception to be raised when some key is blank, use the bang version: ```ruby -Rails.application.credentials.some_api_key! # => raises KeyError: key not found: :some_api_key +Rails.application.credentials.some_api_key! # => raises KeyError: :some_api_key is blank ``` Additional Resources |