Skip to content

Commit 2dfd4fc

Browse files
authored
Merge pull request rails#42618 from AkhilGKrishnan/guides-punctuation-issue-fix
Fix punctuation of layout and rendering doc
2 parents 0d8f657 + d5962ff commit 2dfd4fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/source/layouts_and_rendering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -889,9 +889,9 @@ To include `http://example.com/main.js`:
889889

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

892-
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`.
892+
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`.
893893

894-
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:
894+
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:
895895

896896
```erb
897897
<%= stylesheet_link_tag "main" %>

0 commit comments

Comments
 (0)