Skip to content

Commit 09a77c4

Browse files
authored
Merge pull request #801 from djpowers/patch-1
Use title case for "Webpacker" in README
2 parents 0ef92cc + 70ed98d commit 09a77c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
`react-rails` makes it easy to use [React](http://facebook.github.io/react/) and [JSX](http://facebook.github.io/react/docs/jsx-in-depth.html) in your Ruby on Rails (3.2+) application. Learn more:
1010

1111
- React's [Getting Started guide](https://facebook.github.io/react/docs/getting-started.html)
12-
- Use React & JSX [with webpacker](#use-with-webpacker) or [with the asset pipeline](#use-with-asset-pipeline)
12+
- Use React & JSX [with Webpacker](#use-with-webpacker) or [with the asset pipeline](#use-with-asset-pipeline)
1313
- Rendering [components in views](#view-helper) or [in controller actions](#controller-actions)
1414
- [Server-side rendering](#server-side-rendering)
1515
- [Generating components](#component-generator) in various formats
@@ -34,7 +34,7 @@ $ rails g react:install
3434

3535
## Use with Webpacker
3636

37-
[webpacker](https://github.com/rails/webpacker) integrates modern JS tooling with Rails. `ReactRailsUJS` allows you to gradually migrate to webpacker.
37+
[Webpacker](https://github.com/rails/webpacker) integrates modern JS tooling with Rails. `ReactRailsUJS` allows you to gradually migrate to Webpacker.
3838

3939
Get started by adding `webpacker` to your gemfile and installing `webpacker` and `react-rails`:
4040

@@ -250,7 +250,7 @@ For example, if `Turbolinks` is loaded _after_ `ReactRailsUJS`, you'll need to c
250250
Components are loaded with `ReactRailsUJS.getConstructor(className)`. This function has two built-in implementations:
251251

252252
- On the asset pipeline, it looks up `className` in the global namespace.
253-
- On webpacker, it `require`s files and accesses named exports, as described in [Use with Webpacker](#use-with-webpacker).
253+
- On Webpacker, it `require`s files and accesses named exports, as described in [Use with Webpacker](#use-with-webpacker).
254254

255255
You can override this function to customize the mapping of name-to-constructor. [Server-side rendering](#server-side-rendering) also uses this function.
256256

0 commit comments

Comments
 (0)