Skip to content

Commit d5352db

Browse files
rouzbeh84bebraw
authored andcommitted
Addressing issue #732 (#734)
* quick fixing issue #732 and also changed /instanceable/ to /instantiated/ * updating markdown syntax for link * updating removing pipe and extra `loader` text * linking double bracket instances to updated pages
1 parent f232970 commit d5352db

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

content/concepts/output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ For more information on cross-origin loading see [MDN](https://developer.mozilla
6464

6565
> Default: `false`
6666
67-
> see also [[library and externals]]
67+
> see also [library](/guides/author-libraries/)
6868
69-
> see also [[Development Tools]]
69+
> see also [Development Tools](/guides/development/#choosing-a-tool)
7070
7171
### `output.devtoolLineToLine`
7272

content/development/how-to-write-a-loader.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This function is called when a resource should be transformed by this loader.
99

1010
In the simple case, when only a single loader is applied to the resource, the loader is called with one parameter: the content of the resource file as string.
1111

12-
The loader can access the [[loader API | loaders]] on the `this` context in the function.
12+
The loader can access the [loader API](api/loaders/) on the `this` context in the function.
1313

1414
A sync loader that only wants to give a one value can simply `return` it. In every other case the loader can give back any number of values with the `this.callback(err, values...)` function. Errors are passed to the `this.callback` function or thrown in a sync loader.
1515

content/development/how-to-write-a-plugin.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ These two components are an integral part of any webpack plugin (especially a `c
2020

2121
## Basic plugin architecture
2222

23-
Plugins are instanceable objects with an `apply` method on their prototype. This `apply` method is called once by the webpack compiler while installing the plugin. The `apply` method is given a reference to the underlying webpack compiler, which grants access to compiler callbacks. A simple plugin is structured as follows:
23+
24+
Plugins are instantiated objects with an `apply` method on their prototype. This `apply` method is called once by the Webpack compiler while installing the plugin. The `apply` method is given a reference to the underlying Webpack compiler, which grants access to compiler callbacks. A simple plugin is structured as follows:
2425

2526
```javascript
2627
function HelloWorldPlugin(options) {
@@ -71,7 +72,7 @@ HelloCompilationPlugin.prototype.apply = function(compiler) {
7172
module.exports = HelloCompilationPlugin;
7273
```
7374

74-
For more information on what callbacks are available on the `compiler`, `compilation`, and other important objects, see the [[plugins API|plugins]] doc.
75+
For more information on what callbacks are available on the `compiler`, `compilation`, and other important objects, see the [plugins](/api/plugins/) doc.
7576

7677
## Async compilation plugins
7778

content/guides/build-performance.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ sort: 15
1212
> resolving
1313
> DllPlugin
1414
15-
> see also [[development tools]]
16-
> see also [[resolving]]
15+
[Development Tools](/guides/development/#choosing-a-tool)
16+
17+
> see also [resolving](/concepts/module-resolution/#resolving-rules-in-webpack)

0 commit comments

Comments
 (0)