aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/key_generator.rb
diff options
context:
space:
mode:
authoraditya-kapoor <aditya.kapoor@vinsol.com>2013-05-09 23:27:15 +0530
committeraditya-kapoor <aditya.kapoor@vinsol.com>2013-05-09 23:27:15 +0530
commite6cebce48cdd0cffec1a4e85b76108c3a9f4968f (patch)
tree8effbb26f19da6e0ba67df31215ac869fc2b79af /activesupport/lib/active_support/key_generator.rb
parentd9490631d2e5cf99d748541bd9c3c43adcdd6e6c (diff)
downloadrails-e6cebce48cdd0cffec1a4e85b76108c3a9f4968f.tar.gz
rails-e6cebce48cdd0cffec1a4e85b76108c3a9f4968f.tar.bz2
rails-e6cebce48cdd0cffec1a4e85b76108c3a9f4968f.zip
changed rails -> Rails at two places
Diffstat (limited to 'activesupport/lib/active_support/key_generator.rb')
-rw-r--r--activesupport/lib/active_support/key_generator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/key_generator.rb b/activesupport/lib/active_support/key_generator.rb
index 37124fb7ae..598c46bce5 100644
--- a/activesupport/lib/active_support/key_generator.rb
+++ b/activesupport/lib/active_support/key_generator.rb
@@ -4,7 +4,7 @@ require 'openssl'
module ActiveSupport
# KeyGenerator is a simple wrapper around OpenSSL's implementation of PBKDF2
# It can be used to derive a number of keys for various purposes from a given secret.
- # This lets rails applications have a single secure secret, but avoid reusing that
+ # This lets Rails applications have a single secure secret, but avoid reusing that
# key in multiple incompatible contexts.
class KeyGenerator
def initialize(secret, options = {})