Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 9029

Show
Ignore:
Timestamp:
03/15/08 19:54:02 (2 months ago)
Author:
david
Message:

Docfix (closes #11281) [jlindley]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_view/helpers/asset_tag_helper.rb

    r9016 r9029  
    1818    #   image_tag("rails.png") 
    1919    #     => <img src="http://assets.example.com/images/rails.png" alt="Rails" /> 
    20     #   stylesheet_include_tag("application") 
     20    #   stylesheet_link_tag("application") 
    2121    #     => <link href="http://assets.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 
    2222    # 
     
    2929    #   image_tag("rails.png") 
    3030    #     => <img src="http://assets0.example.com/images/rails.png" alt="Rails" /> 
    31     #   stylesheet_include_tag("application") 
     31    #   stylesheet_link_tag("application") 
    3232    #     => <link href="http://assets3.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 
    3333    # 
     
    4848    #   image_tag("rails.png") 
    4949    #     => <img src="http://assets2.example.com/images/rails.png" alt="Rails" /> 
    50     #   stylesheet_include_tag("application") 
     50    #   stylesheet_link_tag("application") 
    5151    #     => <link href="http://assets1.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 
    5252    # 
     
    6565    #   image_tag("rails.png") 
    6666    #     => <img src="http://images.example.com/images/rails.png" alt="Rails" /> 
    67     #   stylesheet_include_tag("application") 
     67    #   stylesheet_link_tag("application") 
    6868    #     => <link href="http://assets.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 
    6969    #