aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/message_verifier.rb
diff options
context:
space:
mode:
authorT.J. Schuck <tj@tjschuck.com>2017-11-22 14:45:51 -0500
committerT.J. Schuck <tj@tjschuck.com>2017-11-22 14:45:51 -0500
commit3063ace1070e4ddb8d0cc09fbd23049e7b21617a (patch)
treee5d5a5978ec1ee537cc7e2352df2b2e7c7614b64 /activesupport/lib/active_support/message_verifier.rb
parent858baa099b26f6b3e9eb8376d9c09559fe5cc599 (diff)
downloadrails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.tar.gz
rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.tar.bz2
rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.zip
Update incorrect backtick usage in RDoc to teletype
[ci skip]
Diffstat (limited to 'activesupport/lib/active_support/message_verifier.rb')
-rw-r--r--activesupport/lib/active_support/message_verifier.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/message_verifier.rb b/activesupport/lib/active_support/message_verifier.rb
index 622b66ee55..83c39c0a86 100644
--- a/activesupport/lib/active_support/message_verifier.rb
+++ b/activesupport/lib/active_support/message_verifier.rb
@@ -31,7 +31,7 @@ module ActiveSupport
#
# +MessageVerifier+ creates HMAC signatures using SHA1 hash algorithm by default.
# If you want to use a different hash algorithm, you can change it by providing
- # `:digest` key as an option while initializing the verifier:
+ # +:digest+ key as an option while initializing the verifier:
#
# @verifier = ActiveSupport::MessageVerifier.new('s3Krit', digest: 'SHA256')
#
@@ -78,8 +78,8 @@ module ActiveSupport
# === Rotating keys
#
# MessageVerifier also supports rotating out old configurations by falling
- # back to a stack of verifiers. Call `rotate` to build and add a verifier to
- # so either `verified` or `verify` will also try verifying with the fallback.
+ # back to a stack of verifiers. Call +rotate+ to build and add a verifier to
+ # so either +verified+ or +verify+ will also try verifying with the fallback.
#
# By default any rotated verifiers use the values of the primary
# verifier unless specified otherwise.