From 2753462756071c8be90d582b42dd354bda257c34 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Mon, 21 May 2018 11:58:55 -0700 Subject: [PATCH] Test inline md reference (needed until facebook/Docusaurus#257) --- docs/getting-started/working-with-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/working-with-files.md b/docs/getting-started/working-with-files.md index cb13520e6..80dadb2a6 100644 --- a/docs/getting-started/working-with-files.md +++ b/docs/getting-started/working-with-files.md @@ -11,7 +11,7 @@ The `src()` and `dest()` methods are exposed by gulp to interact with files on y `src()` is given a [glob][globs-page] to read from the file system and produces a [node.js stream][node-streams-docs]. It locates all matching files and reads them into memory to pass through the stream. -The stream produced by `src()` should be returned from a task to signal async completion, as mentioned in [What are Tasks?][tasks-page]. +The stream produced by `src()` should be returned from a task to signal async completion, as mentioned in [What are Tasks?](what-are-tasks.md). ```js const { src, dest } = require('gulp');