Skip to content

Commit 5e60bc0

Browse files
authored
Small typo
1 parent 5a7e35f commit 5e60bc0

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
@@ -109,7 +109,7 @@ The `STATS_FILE` parameter represents the output file produced by `webpack-bundl
109109

110110
- `LOADER_CLASS` is the fully qualified name of a python class as a string that holds the custom webpack loader. This is where behavior can be customized as to how the stats file is loaded. Examples include loading the stats file from a database, cache, external url, etc. For convenience, `webpack_loader.loader.WebpackLoader` can be extended. The `load_assets` method is likely where custom behavior will be added. This should return the stats file as an object.
111111

112-
Here's a simple example of loading from an external url:
112+
Here's a simple example of loading from an external url:
113113

114114
```py
115115
import requests
@@ -128,7 +128,7 @@ Its behavior is to accept a string with the name of an entrypoint from the stats
128128

129129
> ⚠️ You can also check an example on how to use multiple `entry` values [here](https://github.com/django-webpack/django-webpack-loader/tree/master/examples/code-splitting).
130130
131-
Below is the basic usage for `render_bundle` within a template.
131+
Below is the basic usage for `render_bundle` within a template:
132132

133133
```HTML+Django
134134
{% load render_bundle from webpack_loader %}

0 commit comments

Comments
 (0)