aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/key_generator.rb
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-11 13:03:57 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-11 13:04:38 +0530
commit1002bf6127f137f1b749f661ad4443c94a8136c1 (patch)
tree0c7ce6f686aa0fee79ae844e52a62797dcfe320c /activesupport/lib/active_support/key_generator.rb
parent05c610df9a2d361a1eae92ffc624f1e5fda474a3 (diff)
downloadrails-1002bf6127f137f1b749f661ad4443c94a8136c1.tar.gz
rails-1002bf6127f137f1b749f661ad4443c94a8136c1.tar.bz2
rails-1002bf6127f137f1b749f661ad4443c94a8136c1.zip
Add missing punctuation mark in `ActiveSupport` docs [ci skip]
It improves readability of docs
Diffstat (limited to 'activesupport/lib/active_support/key_generator.rb')
-rw-r--r--activesupport/lib/active_support/key_generator.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/key_generator.rb b/activesupport/lib/active_support/key_generator.rb
index 6bc3db6ec6..e88b04da3e 100644
--- a/activesupport/lib/active_support/key_generator.rb
+++ b/activesupport/lib/active_support/key_generator.rb
@@ -2,7 +2,7 @@ require 'concurrent'
require 'openssl'
module ActiveSupport
- # KeyGenerator is a simple wrapper around OpenSSL's implementation of PBKDF2
+ # 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
# key in multiple incompatible contexts.
@@ -24,7 +24,7 @@ module ActiveSupport
# CachingKeyGenerator is a wrapper around KeyGenerator which allows users to avoid
# re-executing the key generation process when it's called using the same salt and
- # key_size
+ # key_size.
class CachingKeyGenerator
def initialize(key_generator)
@key_generator = key_generator