From 69348c60187eb3bc257f4f571371e3ff240b90ad Mon Sep 17 00:00:00 2001 From: Sebastian Dolber <374992+sdolber@users.noreply.github.com> Date: Mon, 25 Feb 2019 10:47:49 -0500 Subject: [PATCH] chore(docs): replace broken packages link with correct plugins (#12076) ## Description This change fixes the broken link reference to the Plugins page in the Gatsby Tutorial Part Four in the "When do I use unstructured data vs GraphQL?" section. It replaces the '/packages/' link ref with '/plugins'. ## Related Issues Fixes #12029 --- docs/tutorial/part-four/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/part-four/index.md b/docs/tutorial/part-four/index.md index 6953a3707d25b..06893d12140bd 100644 --- a/docs/tutorial/part-four/index.md +++ b/docs/tutorial/part-four/index.md @@ -62,7 +62,7 @@ See the [Using Gatsby without GraphQL](/docs/using-gatsby-without-graphql/) guid If you're building a small site, one efficient way to build it is to pull in unstructured data as outlined in this guide, using `createPages` API, and then if the site becomes more complex later on, you move on to building more complex sites, or you'd like to transform your data, follow these steps: -1. Check out the [Plugin Library](/packages/) to see if the source plugins and/or transformer plugins you'd like to use already exist +1. Check out the [Plugin Library](/plugins/) to see if the source plugins and/or transformer plugins you'd like to use already exist 2. If they don't exist, read the [Plugin Authoring](/docs/plugin-authoring/) guide and consider building your own! ### How Gatsby's data layer uses GraphQL to pull data into components