Merge pull request #78 from renyijiu/fix/module-name

Fix module name error
This commit is contained in:
Jason Lee 2019-07-01 09:45:45 +08:00 committed by GitHub
commit 07b86d42d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ module RuCaptcha
length = config.length
unless length.in?(3..7)
raise Rucaptcha::Errors::Configuration, 'length config error, value must in 3..7'
raise RuCaptcha::Errors::Configuration, 'length config error, value must in 3..7'
end
strikethrough = config.strikethrough ? 1 : 0

View File

@ -1,4 +1,4 @@
module Rucaptcha
module RuCaptcha
module Errors
class Configuration < StandardError; end
end