Skip to content

Commit

Permalink
Merge pull request #42618 from AkhilGKrishnan/guides-punctuation-issu…
Browse files Browse the repository at this point in the history
…e-fix

Fix punctuation of layout and rendering doc
  • Loading branch information
zzak committed Jun 27, 2021
2 parents 0d8f657 + d5962ff commit 2dfd4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/source/layouts_and_rendering.md
Expand Up @@ -889,9 +889,9 @@ To include `http://example.com/main.js`:

The [`stylesheet_link_tag`][] helper returns an HTML `<link>` tag for each source provided.

If you are using Rails with the "Asset Pipeline" enabled, this helper will generate a link to `/assets/stylesheets/`. This link is then processed by the Sprockets gem. A stylesheet file can be stored in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`.
If you are using Rails with the "Asset Pipeline" enabled, this helper will generate a link to `/assets/stylesheets/`. This link is then processed by the Sprockets gem. A stylesheet file can be stored in one of three locations: `app/assets`, `lib/assets`, or `vendor/assets`.

You can specify a full path relative to the document root, or a URL. For example, to link to a stylesheet file that is inside a directory called `stylesheets` inside of one of `app/assets`, `lib/assets` or `vendor/assets`, you would do this:
You can specify a full path relative to the document root, or a URL. For example, to link to a stylesheet file that is inside a directory called `stylesheets` inside of one of `app/assets`, `lib/assets`, or `vendor/assets`, you would do this:

```erb
<%= stylesheet_link_tag "main" %>
Expand Down

0 comments on commit 2dfd4fc

Please sign in to comment.