aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2016-08-30 15:04:23 -0500
committerschneems <richard.schneeman@gmail.com>2016-08-30 15:04:23 -0500
commit70dd041f354dfc71b7e516d5ba5725c769ef06d9 (patch)
treea5a74a7db4121889e572e2e6643c367541110f1e /actionview
parentab5857a53a50cf9de0a8b869c5f43b1acdb90aa5 (diff)
downloadrails-70dd041f354dfc71b7e516d5ba5725c769ef06d9.tar.gz
rails-70dd041f354dfc71b7e516d5ba5725c769ef06d9.tar.bz2
rails-70dd041f354dfc71b7e516d5ba5725c769ef06d9.zip
Fix style
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/asset_url_helper.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionview/lib/action_view/helpers/asset_url_helper.rb b/actionview/lib/action_view/helpers/asset_url_helper.rb
index d1f85d3319..0967245855 100644
--- a/actionview/lib/action_view/helpers/asset_url_helper.rb
+++ b/actionview/lib/action_view/helpers/asset_url_helper.rb
@@ -130,7 +130,7 @@ module ActionView
# All options passed to +asset_path+ will be passed to +compute_asset_path+
# which is implemented by sprockets-rails.
#
- # asset_path("application.js") # => "/assets/application-60aa4fdc5cea14baf5400fba1abf4f2a46a5166bad4772b1effe341570f07de9.js"
+ # asset_path("application.js") # => "/assets/application-60aa4fdc5cea14baf5400fba1abf4f2a46a5166bad4772b1effe341570f07de9.js"
#
# === Without the asset pipeline (<tt>skip_pipeline: true</tt>)
#
@@ -138,10 +138,10 @@ module ActionView
# checking is done to verify the source passed into +asset_path+ is valid
# and that the file exists on disk.
#
- # asset_path("application.js", skip_pipeline: true) # => "application.js"
- # asset_path("filedoesnotexist.png", skip_pipeline: true) # => "filedoesnotexist.png"
- # asset_path("application", type: :javascript, skip_pipeline: true) # => "/javascripts/application.js"
- # asset_path("application", type: :stylesheet, skip_pipeline: true) # => "/stylesheets/application.css"
+ # asset_path("application.js", skip_pipeline: true) # => "application.js"
+ # asset_path("filedoesnotexist.png", skip_pipeline: true) # => "filedoesnotexist.png"
+ # asset_path("application", type: :javascript, skip_pipeline: true) # => "/javascripts/application.js"
+ # asset_path("application", type: :stylesheet, skip_pipeline: true) # => "/stylesheets/application.css"
#
# === Options applying to all assets
#