From dc659dfce37e0581300fcedf714b8383b2a51e12 Mon Sep 17 00:00:00 2001 From: alan910127 Date: Wed, 10 May 2023 12:24:43 -0700 Subject: [PATCH] docs: Fix typo in `getting-started/installation-and-setup.md` (#4306) Summary: Fix a typo in the relay config file example in the documentation, should be `excludes` instead of `exclude`. Pull Request resolved: https://github.com/facebook/relay/pull/4306 Reviewed By: tyao1 Differential Revision: D45711796 Privacy Context Container: L1125407 Pulled By: captbaritone fbshipit-source-id: 50b082f9e80f7b14f3e0bc59fe404626fb9b7265 --- website/docs/getting-started/installation-and-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/getting-started/installation-and-setup.md b/website/docs/getting-started/installation-and-setup.md index 82a9d8b84aed6..57a685e534981 100644 --- a/website/docs/getting-started/installation-and-setup.md +++ b/website/docs/getting-started/installation-and-setup.md @@ -69,7 +69,7 @@ module.exports = { src: "./src", language: "javascript", // "javascript" | "typescript" | "flow" schema: "./data/schema.graphql", - exclude: ["**/node_modules/**", "**/__mocks__/**", "**/__generated__/**"], + excludes: ["**/node_modules/**", "**/__mocks__/**", "**/__generated__/**"], } ```