Skip to content

Commit de64b67

Browse files
basti1302bebraw
authored andcommitted
chore: fix typo - runing -> running (#1073)
1 parent e1b72c4 commit de64b67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/api/plugins/tapable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The different `applyPlugins*` methods cover the following use cases:
3434

3535
* Plugins can run asynchronously
3636

37-
* Quit runing plugins on bail: that is once one plugin returns non-`undefined`, jump out of the run flow and return *the return of that plugin*. This sounds like `once()` of `EventEmitter` but is totally different.
37+
* Quit running plugins on bail: that is, once one plugin returns non-`undefined`, jump out of the run flow and return *the return of that plugin*. This sounds like `once()` of `EventEmitter` but is totally different.
3838

3939
## Example
4040
One of webpack's **Tapable instances**, [Compiler](./compiler), is responsible for compiling the webpack configuration object and returning a [Compilation](./compilation) instance. When the Compilation instance runs, it creates the required bundles.
@@ -68,4 +68,4 @@ The compiler executes the plugin at the appropriate point in its lifecycle by
6868

6969
```javascript
7070
this.apply*("emit",options) // will fetch all plugins under 'emit' name and run them.
71-
```
71+
```

0 commit comments

Comments
 (0)