From 3beebea7549ae4ed46dfaa91d4f3047f3b242b6c Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 6 Feb 2015 15:17:15 +0000 Subject: Fixed typoes in comments --- lib/mauve/authentication.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/mauve/authentication.rb b/lib/mauve/authentication.rb index 2637047..ad7bf60 100644 --- a/lib/mauve/authentication.rb +++ b/lib/mauve/authentication.rb @@ -13,10 +13,10 @@ module Mauve # Base class for authentication. # class Authentication - + ORDER = [] - # Autenticates a user. + # Authenticate a user. # # @param [String] login # @param [String] password @@ -34,14 +34,14 @@ module Mauve def logger self.class.logger end - + # @return [Log4r::Logger] def self.logger @logger ||= Log4r::Logger.new(self.to_s) end # This calls all classes in the ORDER array one by one. If all classes - # fail, a 5 second sleep rate-limits authentication attempts. + # fail, a 5 second sleep rate-limits authentication attempts. # # @param [String] login # @param [String] password @@ -79,7 +79,7 @@ module Mauve end - # This is the Bytemark authentication mechansim. + # This is the Bytemark authentication mechanism. # class AuthBytemark < Authentication @@ -135,7 +135,7 @@ module Mauve end - # This is the local authentication mechansim, i.e. against the values in the + # This is the local authentication mechanism, i.e. against the values in the # Mauve config file. # class AuthLocal < Authentication @@ -167,7 +167,7 @@ module Mauve return false end end - + end end -- cgit v1.2.1