Skip to content

Commit 544b3be

Browse files
committed
correct minor typos ("might be need" → "might be needed", duplicate "at")
1 parent 466cd57 commit 544b3be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ A common issue is that your repository does not contain the output directory use
5151

5252
### How do I avoid `ActionView::Template::Error: Error: Function rgb is missing argument $green`?
5353

54-
This might happen if your Gemfile.lock contains the legacy `sassc-rails`, which might be need while progressively migrating your project, or which might be a transitive dependency of a gem your project depends on and over which you have no control. In this case, prevent Sprockets from bundling the CSS on top of the bundling already performed by this gem. Make sure do this for all environments, not only production, otherwise your test suite may fail.
54+
This might happen if your Gemfile.lock contains the legacy `sassc-rails`, which might be needed while progressively migrating your project, or which might be a transitive dependency of a gem your project depends on and over which you have no control. In this case, prevent Sprockets from bundling the CSS on top of the bundling already performed by this gem. Make sure do this for all environments, not only production, otherwise your test suite may fail.
5555

5656
```
5757
# config/initializers/assets.rb
@@ -71,7 +71,7 @@ rails assets:clobber
7171
Use an `@import` statement and path to a specific stylesheet, omitting the `node_modules/` segment and the file's extension. For example:
7272

7373
```scss
74-
/* Desired file is at at node_modules/select2/dist/css/select2.css */
74+
/* Desired file is at node_modules/select2/dist/css/select2.css */
7575
@import "select2/dist/css/select2";
7676
```
7777

0 commit comments

Comments
 (0)