Skip to content

Commit

Permalink
docs: Fix typo in getting-started/installation-and-setup.md (#4306)
Browse files Browse the repository at this point in the history
Summary:
Fix a typo in the relay config file example in the documentation,
should be `excludes` instead of `exclude`.

Pull Request resolved: #4306

Reviewed By: tyao1

Differential Revision:
D45711796

Privacy Context Container: L1125407

Pulled By: captbaritone

fbshipit-source-id: 50b082f9e80f7b14f3e0bc59fe404626fb9b7265
  • Loading branch information
alan910127 authored and facebook-github-bot committed May 10, 2023
1 parent a79038b commit dc659df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/getting-started/installation-and-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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__/**"],
}
```

Expand Down

0 comments on commit dc659df

Please sign in to comment.