diff options
author | logylaps <logylaps@gmail.com> | 2010-05-04 02:17:36 -0700 |
---|---|---|
committer | logylaps <logylaps@gmail.com> | 2010-05-04 02:17:36 -0700 |
commit | 6658c958972da2c56f2be9001fe22c8f2875ba3c (patch) | |
tree | bf3bf05fa8a9d38cd7aab5e497e1c9d451612f4b /railties/guides | |
parent | 2a09b8ecc7df94db28dbcaff43ce0c5cdd5acfdc (diff) | |
download | rails-6658c958972da2c56f2be9001fe22c8f2875ba3c.tar.gz rails-6658c958972da2c56f2be9001fe22c8f2875ba3c.tar.bz2 rails-6658c958972da2c56f2be9001fe22c8f2875ba3c.zip |
typo 'main.cs' -> 'main.css'
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/layouts_and_rendering.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/layouts_and_rendering.textile b/railties/guides/source/layouts_and_rendering.textile index 92b36ab3e4..f6b6a1a7cc 100644 --- a/railties/guides/source/layouts_and_rendering.textile +++ b/railties/guides/source/layouts_and_rendering.textile @@ -747,7 +747,7 @@ You can even use dynamic paths such as +cache/#{current_site}/main/display+. h5. Linking to CSS Files with +stylesheet_link_tag+ -The +stylesheet_link_tag+ helper returns an HTML +<link>+ tag for each source provided. Rails looks in +public/stylesheets+ for these files by default, but you can specify a full path relative to the document root, or a URL, if you prefer. For example, to include +public/stylesheets/main.cs+: +The +stylesheet_link_tag+ helper returns an HTML +<link>+ tag for each source provided. Rails looks in +public/stylesheets+ for these files by default, but you can specify a full path relative to the document root, or a URL, if you prefer. For example, to include +public/stylesheets/main.css+: <erb> <%= stylesheet_link_tag "main" %> |