Skip to content

Commit 330c6e7

Browse files
authored
Merge pull request #514 from gangachris/hotfix/typo
correct grammatical typo
2 parents f5bdf4c + 294e529 commit 330c6e7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/concepts/loaders.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ contributors:
55
- manekinekko
66
- ev1stensberg
77
- SpaceK33z
8+
- gangachris
89
---
910

1011
Loaders are transformations that are applied on a resource file of your application. They are functions (running in Node.js) that take the source of a resource file as the parameter and return the new source.
@@ -13,7 +14,7 @@ For example, you can use loaders to tell webpack to load a CSS file or to conver
1314

1415
## Loader Features
1516

16-
* Loaders can be chained. They are applied in a pipeline to the resource. A chain of loaders are compiled chronologically. The first loader in a chain of loaders returns an value to the next and at the end loader, webpack expects JavaScript to be returned.
17+
* Loaders can be chained. They are applied in a pipeline to the resource. A chain of loaders are compiled chronologically. The first loader in a chain of loaders returns a value to the next and at the end loader, webpack expects JavaScript to be returned.
1718
* Loaders can be synchronous or asynchronous.
1819
* Loaders run in Node.js and can do everything that’s possible there.
1920
* Loaders accept query parameters. This can be used to pass configuration to the loader.
@@ -22,7 +23,7 @@ For example, you can use loaders to tell webpack to load a CSS file or to conver
2223
* Plugins can give loaders more features.
2324
* Loaders can emit additional arbitrary files.
2425

25-
Loaders allows more power in the JavaScript ecosystem through preprocessing
26+
Loaders allows more power in the JavaScript ecosystem through preprocessing
2627
functions (loaders). Users now have more flexibility to include fine-grained logic such as compression, packaging, language translations and [more](/loaders).
2728

2829
## Resolving Loaders

0 commit comments

Comments
 (0)