Skip to content

Commit 4dd9f94

Browse files
KittyGiraudelskipjack
authored andcommitted
docs(api): make “learn more” links self-explanatory (#1793)
1 parent e849c15 commit 4dd9f94

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/api/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,32 @@ A variety of interfaces are available to customize the compilation process. Some
1212

1313
The Command Line Interface (CLI) to configure and interact with your build. It is especially useful in the case of early prototyping and profiling. For the most part, the CLI is simply used to kick off the process using a configuration file and a few flags (e.g. `--env`).
1414

15-
[Learn more!](/api/cli)
15+
[Learn more about the CLI!](/api/cli)
1616

1717

1818
## Module
1919

2020
When processing modules with webpack, it is important to understand the different module syntaxes -- specifically the [methods](/api/module-methods) and [variables](/api/module-variables) -- that are supported.
2121

22-
[Learn more!](/api/module-methods)
22+
[Learn more about modules!](/api/module-methods)
2323

2424

2525
## Node
2626

2727
While most users can get away with just using the CLI along with a configuration file, more fine-grained control of the compilation can be achieved via the Node interface. This includes passing multiple configurations, programmatically running or watching, and collecting stats.
2828

29-
[Learn more!](/api/node)
29+
[Learn more about the Node API!](/api/node)
3030

3131

3232
## Loaders
3333

3434
Loaders are transformations that are applied to the source code of a module. They are written as functions that accept source code as a parameter and return a new version of that code with transformations applied.
3535

36-
[Learn more!](/api/loaders)
36+
[Learn more about loaders!](/api/loaders)
3737

3838

3939
## Plugins
4040

4141
The plugin interface provided by webpack allows users to tap directly into the compilation process. Plugins can register handlers on lifecycle hooks that run at different points in the compilation process. When each hook is executed, the plugin will have full access to the current state of the compilation.
4242

43-
[Learn more!](/api/plugins)
43+
[Learn more about plugins!](/api/plugins)

0 commit comments

Comments
 (0)