From a69e725124dde32d7b6f9da96b31a2949d7841c5 Mon Sep 17 00:00:00 2001 From: Maxime Garcia Date: Mon, 24 May 2021 15:02:27 +0200 Subject: [PATCH] Minor: Typo in ActiveSupport::SecureCompareRotator doc --- activesupport/lib/active_support/secure_compare_rotator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/lib/active_support/secure_compare_rotator.rb b/activesupport/lib/active_support/secure_compare_rotator.rb index 269703c34a..b5869825db 100644 --- a/activesupport/lib/active_support/secure_compare_rotator.rb +++ b/activesupport/lib/active_support/secure_compare_rotator.rb @@ -17,7 +17,7 @@ module ActiveSupport # # class MyController < ApplicationController # def authenticate_request - # rotator = ActiveSupport::SecureComparerotator.new('new_password') + # rotator = ActiveSupport::SecureCompareRotator.new('new_password') # rotator.rotate('old_password') # # authenticate_or_request_with_http_basic do |username, password|