Skip to content

Commit c433c70

Browse files
committed
Docs: Replace some links in Getting Started
1 parent 5c07954 commit c433c70

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/getting-started/3-creating-tasks.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function javascript(cb) {
209209
exports.build = series(clean, parallel(css, javascript));
210210
```
211211

212-
[async-completion-docs]: 4-async-completion.md
213-
[using-async-await-docs]: 4-async-completion.md#using-asyncawait
212+
[async-completion-docs]: ../getting-started/4-async-completion.md
213+
[using-async-await-docs]: ../getting-started/4-async-completion.md#using-asyncawait
214214
[img-gulp-tasks-command]: https://gulpjs.com/img/docs-gulp-tasks-command.png
215215
[async-once]: https://github.com/gulpjs/async-once

docs/getting-started/5-working-with-files.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ exports.default = function() {
9090
* Streaming mode exists mainly to operate on large files that can't fit in memory, like giant images or movies. The contents are streamed from the filesystem in small chunks instead of loaded all at once. If you need to use streaming mode, look for a plugin that supports it or write your own.
9191
* Empty mode contains no contents and is useful when only working with file metadata.
9292

93-
[explaining-globs-docs]: 6-explaining-globs.md
94-
[creating-tasks-docs]: 3-creating-tasks.md
95-
[overlapping-globs-docs]: 6-explaining-globs.md#overlapping-globs
93+
[explaining-globs-docs]: ../getting-started/6-explaining-globs.md
94+
[creating-tasks-docs]: ../getting-started/3-creating-tasks.md
95+
[overlapping-globs-docs]: ../getting-started/6-explaining-globs.md#overlapping-globs
9696
[node-streams-docs]: https://nodejs.org/api/stream.html
97-
[symlink-api-docs]: ../documentation-missing.md
98-
[src-options-api-docs]: ../documentation-missing.md
97+
[symlink-api-docs]: ../api/symlink.md
98+
[src-options-api-docs]: ../api/src.md#options

docs/getting-started/8-watching-files.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ __Be careful:__ The returned chokidar instance doesn't have queueing, delay, or
115115
Gulp has an optional dependency called [fsevents][fsevents-package], which is a Mac-specific file watcher. If you see an installation warning for fsevents - _"npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents"_ - it is not an issue.
116116
If fsevents installation is skipped, a fallback watcher will be used and any errors occurring in your gulpfile aren't related to this warning.
117117

118-
[globs-docs]: 6-explaining-globs.md
119-
[creating-tasks-docs]: 3-creating-tasks.md
120-
[async-completion-doc]: 4-async-completion.md
118+
[globs-docs]: ../getting-started/6-explaining-globs.md
119+
[creating-tasks-docs]: ../getting-started/3-creating-tasks.md
120+
[async-completion-doc]: ../getting-started/4-async-completion.md
121121
[chokidar-module-package]: https://www.npmjs.com/package/chokidar
122122
[fsevents-package]: https://www.npmjs.com/package/fsevents

0 commit comments

Comments
 (0)