Merge pull request #5405 from chihaso/fix_comment_in_some_modules

Fix comment in some modules [ci skip]
This commit is contained in:
Carlos Antonio da Silva
2021-10-06 19:17:21 -03:00
committed by GitHub
5 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ module Devise
#
# == Options
#
# Authenticatable adds the following options to devise_for:
# Authenticatable adds the following options to devise method in your model:
#
# * +authentication_keys+: parameters used for authentication. By default [:email].
#

View File

@@ -13,7 +13,7 @@ module Devise
#
# == Options
#
# DatabaseAuthenticatable adds the following options to devise_for:
# DatabaseAuthenticatable adds the following options to devise method in your model:
#
# * +pepper+: a random string used to provide a more secure hash. Use
# `rails secret` to generate new keys.

View File

@@ -8,11 +8,11 @@ module Devise
#
# == Options
#
# Oauthable adds the following options to devise_for:
# Oauthable adds the following options to devise method in your model:
#
# * +omniauth_providers+: Which providers are available to this model. It expects an array:
#
# devise_for :database_authenticatable, :omniauthable, omniauth_providers: [:twitter]
# devise :database_authenticatable, :omniauthable, omniauth_providers: [:twitter]
#
module Omniauthable
extend ActiveSupport::Concern

View File

@@ -11,7 +11,7 @@ module Devise
#
# == Options
#
# Timeoutable adds the following options to devise_for:
# Timeoutable adds the following options to devise method in your model:
#
# * +timeout_in+: the interval to timeout the user session without activity.
#

View File

@@ -9,7 +9,7 @@ module Devise
#
# == Options
#
# Validatable adds the following options to devise_for:
# Validatable adds the following options to devise method in your model:
#
# * +email_regexp+: the regular expression used to validate e-mails;
# * +password_length+: a range expressing password length. Defaults to 6..128.