From f91c388beb265e5008202f11100309549162247a Mon Sep 17 00:00:00 2001 From: roydukkey Date: Mon, 8 Feb 2021 15:22:24 -0500 Subject: [PATCH] Docs: Remove typo in custom registry docs (#2543) --- docs/advanced/creating-custom-registries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/creating-custom-registries.md b/docs/advanced/creating-custom-registries.md index fdd2a94aa..a5423b5fa 100644 --- a/docs/advanced/creating-custom-registries.md +++ b/docs/advanced/creating-custom-registries.md @@ -95,7 +95,7 @@ Must return an object listing all tasks in the registry. ### Sharing Tasks -To share common tasks with all your projects, you can expose an `init` method on the registry and it will receive the an instance of gulp as the only argument. You can then use `gulpInst.task(name, fn)` to register pre-defined tasks. +To share common tasks with all your projects, you can expose an `init` method on the registry and it will receive an instance of gulp as the only argument. You can then use `gulpInst.task(name, fn)` to register pre-defined tasks. For example, you might want to share a `clean` task: