mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #27668 from kenta-s/fix-grammar-in-asset_url_helper
Fix grammar in asset_url_helper.rb [ci skip]
This commit is contained in:
commit
aa0a3d26e3
1 changed files with 3 additions and 3 deletions
|
@ -406,7 +406,7 @@ module ActionView
|
|||
def video_url(source, options = {})
|
||||
url_to_asset(source, { type: :video }.merge!(options))
|
||||
end
|
||||
alias_method :url_to_video, :video_url # aliased to avoid conflicts with an video_url named route
|
||||
alias_method :url_to_video, :video_url # aliased to avoid conflicts with a video_url named route
|
||||
|
||||
# Computes the path to an audio asset in the public audios directory.
|
||||
# Full paths from the document root will be passed through.
|
||||
|
@ -445,7 +445,7 @@ module ActionView
|
|||
def font_path(source, options = {})
|
||||
path_to_asset(source, { type: :font }.merge!(options))
|
||||
end
|
||||
alias_method :path_to_font, :font_path # aliased to avoid conflicts with an font_path named route
|
||||
alias_method :path_to_font, :font_path # aliased to avoid conflicts with a font_path named route
|
||||
|
||||
# Computes the full URL to a font asset.
|
||||
# This will use +font_path+ internally, so most of their behaviors will be the same.
|
||||
|
@ -457,7 +457,7 @@ module ActionView
|
|||
def font_url(source, options = {})
|
||||
url_to_asset(source, { type: :font }.merge!(options))
|
||||
end
|
||||
alias_method :url_to_font, :font_url # aliased to avoid conflicts with an font_url named route
|
||||
alias_method :url_to_font, :font_url # aliased to avoid conflicts with a font_url named route
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue