aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/asset_url_helper.rb
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-04-16 00:46:07 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-04-16 00:46:07 +0300
commitb0e17b9af4b98e279ca380d52f5daee2db5c6540 (patch)
tree9a9099265f63f6d43665223a8afb9e88d1239f9d /actionview/lib/action_view/helpers/asset_url_helper.rb
parent8d11151abad44f66485952282d30ed8a5594a5a9 (diff)
downloadrails-b0e17b9af4b98e279ca380d52f5daee2db5c6540.tar.gz
rails-b0e17b9af4b98e279ca380d52f5daee2db5c6540.tar.bz2
rails-b0e17b9af4b98e279ca380d52f5daee2db5c6540.zip
fix typo asser url [ci skip]
Diffstat (limited to 'actionview/lib/action_view/helpers/asset_url_helper.rb')
-rw-r--r--actionview/lib/action_view/helpers/asset_url_helper.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/actionview/lib/action_view/helpers/asset_url_helper.rb b/actionview/lib/action_view/helpers/asset_url_helper.rb
index a08c2e4084..ef4a6c98c0 100644
--- a/actionview/lib/action_view/helpers/asset_url_helper.rb
+++ b/actionview/lib/action_view/helpers/asset_url_helper.rb
@@ -248,7 +248,7 @@ module ActionView
# Computes the full URL to a JavaScript asset in the public javascripts directory.
# This will use +javascript_path+ internally, so most of their behaviors will be the same.
- # Since +javascript_url+ is based on +asser_url+ method you can set :host options. If :host
+ # Since +javascript_url+ is based on +asset_url+ method you can set :host options. If :host
# options is set, it overwrites global +config.action_controller.asset_host+ setting.
#
# javascript_url "js/xmlhr.js", host: "http://stage.example.com" # => http://stage.example.com/assets/dir/xmlhr.js
@@ -275,7 +275,7 @@ module ActionView
# Computes the full URL to a stylesheet asset in the public stylesheets directory.
# This will use +stylesheet_path+ internally, so most of their behaviors will be the same.
- # Since +stylesheet_url+ is based on +asser_url+ method you can set :host options. If :host
+ # Since +stylesheet_url+ is based on +asset_url+ method you can set :host options. If :host
# options is set, it overwrites global +config.action_controller.asset_host+ setting.
#
# stylesheet_url "css/style.css", host: "http://stage.example.com" # => http://stage.example.com/css/style.css
@@ -305,7 +305,7 @@ module ActionView
# Computes the full URL to an image asset.
# This will use +image_path+ internally, so most of their behaviors will be the same.
- # Since +image_url+ is based on +asser_url+ method you can set :host options. If :host
+ # Since +image_url+ is based on +asset_url+ method you can set :host options. If :host
# options is set, it overwrites global +config.action_controller.asset_host+ setting.
#
# image_url "edit.png", host: "http://stage.example.com" # => http://stage.example.com/edit.png
@@ -331,7 +331,7 @@ module ActionView
# Computes the full URL to a video asset in the public videos directory.
# This will use +video_path+ internally, so most of their behaviors will be the same.
- # Since +video_url+ is based on +asser_url+ method you can set :host options. If :host
+ # Since +video_url+ is based on +asset_url+ method you can set :host options. If :host
# options is set, it overwrites global +config.action_controller.asset_host+ setting.
#
# video_url "hd.avi", host: "http://stage.example.com" # => http://stage.example.com/hd.avi
@@ -357,7 +357,7 @@ module ActionView
# Computes the full URL to an audio asset in the public audios directory.
# This will use +audio_path+ internally, so most of their behaviors will be the same.
- # Since +audio_url+ is based on +asser_url+ method you can set :host options. If :host
+ # Since +audio_url+ is based on +asset_url+ method you can set :host options. If :host
# options is set, it overwrites global +config.action_controller.asset_host+ setting.
#
# audio_url "horse.wav", host: "http://stage.example.com" # => http://stage.example.com/horse.wav
@@ -382,7 +382,7 @@ module ActionView
# Computes the full URL to a font asset.
# This will use +font_path+ internally, so most of their behaviors will be the same.
- # Since +font_url+ is based on +asser_url+ method you can set :host options. If :host
+ # Since +font_url+ is based on +asset_url+ method you can set :host options. If :host
# options is set, it overwrites global +config.action_controller.asset_host+ setting.
#
# font_url "font.ttf", host: "http://stage.example.com" # => http://stage.example.com/font.ttf