Skip to content

Commit 6f52248

Browse files
authored
Merge pull request rails#55069 from duffuniverse/fix-typos-in-the-asset-pipeline-guide
[ci skip] Fix typos in the Asset Pipeline guide
2 parents 1556001 + 9ee0d93 commit 6f52248

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

guides/source/asset_pipeline.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ paths](#digested-assets-in-views) using helpers like `asset_path`, `image_tag`,
174174
automatically converted into their fingerprinted paths using the
175175
[`.manifest.json` file](#manifest-files).
176176

177-
Its possible to exclude certain directories from this process, you can read more
177+
It is possible to exclude certain directories from this process, you can read more
178178
about it in the [Fingerprinting
179179
section](#fingerprinting-versioning-with-digest-based-urls).
180180

@@ -359,7 +359,7 @@ serve them efficiently.
359359

360360
### Setup
361361

362-
Follow these steps for setup Propshaft in your Rails application:
362+
Follow these steps for setting up Propshaft in your Rails application:
363363

364364
1. Create a new Rails application:
365365

@@ -542,7 +542,7 @@ headers.
542542
For Apache:
543543
544544
```apache
545-
# The Expires* directives requires the Apache module
545+
# The Expires* directives require the Apache module
546546
# `mod_expires` to be enabled.
547547
<Location /assets/>
548548
# Use of ETag is discouraged when Last-Modified is present
@@ -642,7 +642,7 @@ it will try to find it at the "origin" `example.com/assets/smile.png`, and then
642642
store it for future use.
643643

644644
If you want to serve only some assets from your CDN, you can use custom `:host`
645-
option your asset helper, which overwrites value set in
645+
option for your asset helper, which overwrites the value set in
646646
[`config.action_controller.asset_host`][].
647647

648648
```erb
@@ -1013,7 +1013,7 @@ delivered via the Rails asset pipeline.
10131013
4. In production, the gem ensures your stylesheets are compiled and ready for
10141014
deployment. During the `assets:precompile` step, it installs all
10151015
`package.json` dependencies via `bun`, `yarn`, `pnpm` or `npm` and runs the
1016-
`build:css` task. to process your stylesheet entry points. The resulting CSS
1016+
`build:css` task to process your stylesheet entry points. The resulting CSS
10171017
output is then digested by the asset pipeline and copied into the
10181018
`public/assets` directory, just like other asset pipeline files.
10191019

0 commit comments

Comments
 (0)