diff options
author | Sebastian Martinez <sebastian@wyeworks.com> | 2011-05-23 20:53:18 -0300 |
---|---|---|
committer | Sebastian Martinez <sebastian@wyeworks.com> | 2011-05-23 20:53:18 -0300 |
commit | 05f29ca2c9ef9d0cd99b69a71287c6343d386409 (patch) | |
tree | a2bce9eddd8c79fbd01e504ec02f4958f2b77aee /actionpack | |
parent | 5ec23b95ba7d5a00d20f6ec59f75c34a2ac73b5d (diff) | |
download | rails-05f29ca2c9ef9d0cd99b69a71287c6343d386409.tar.gz rails-05f29ca2c9ef9d0cd99b69a71287c6343d386409.tar.bz2 rails-05f29ca2c9ef9d0cd99b69a71287c6343d386409.zip |
Remove extra white-space on some exception messages.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index 20e958c767..02a4a1c440 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -305,7 +305,7 @@ module ActionDispatch if secret.length < SECRET_MIN_LENGTH raise ArgumentError, "Secret should be something secure, " + - "like \"#{SecureRandom.hex(16)}\". The value you " + + "like \"#{SecureRandom.hex(16)}\". The value you " + "provided, \"#{secret}\", is shorter than the minimum length " + "of #{SECRET_MIN_LENGTH} characters" end |