From bca72ddf59ee1f26a2d12427272990d84ee69a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Guimar=C3=A3es?= Date: Sat, 16 Oct 2010 20:17:39 -0300 Subject: [PATCH] fixing typo and whitespaces --- lib/devise/encryptors/restful_authentication_sha1.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/devise/encryptors/restful_authentication_sha1.rb b/lib/devise/encryptors/restful_authentication_sha1.rb index 38f9cd74..555b63f2 100644 --- a/lib/devise/encryptors/restful_authentication_sha1.rb +++ b/lib/devise/encryptors/restful_authentication_sha1.rb @@ -5,10 +5,10 @@ module Devise # = RestfulAuthenticationSha1 # Simulates Restful Authentication's default encryption mechanism. # Warning: it uses Devise's pepper to port the concept of REST_AUTH_SITE_KEY - # Warning: it uses Devise's stretches configuration to port the concept of REST_AUTH_DIGEST_STRETCHES. Should be set to 10 in - # the initializer to silumate the default behavior. + # Warning: it uses Devise's stretches configuration to port the concept of REST_AUTH_DIGEST_STRETCHES. Should be set to 10 in + # the initializer to simulate the default behavior. class RestfulAuthenticationSha1 < Base - + # Gererates a default password digest based on salt, pepper and the # incoming password. def self.digest(password, stretches, salt, pepper) @@ -19,4 +19,4 @@ module Devise end end -end \ No newline at end of file +end