Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed minor Typos and grammatical errors #9353

Merged
merged 6 commits into from
Dec 12, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into FixTypo
  • Loading branch information
LekoArts authored Dec 4, 2018
commit 71acc2a4434466b86ca094417b8f634636c14b1b
5 changes: 1 addition & 4 deletions docs/docs/create-source-plugin.md
Original file line number Diff line number Diff line change
@@ -89,10 +89,7 @@ But at a high-level, these are the jobs of a source plugin:
- "Link" nodes types you create as appropriate (see
[_Node Link_](/docs/api-specification/) in the API specification concepts
section.
- Return either a promise or use the callback (3rd parameter) to report back to
Gatsby when you're done sourcing nodes. Otherwise, either Gatsby will continue
on before you're done sourcing or hang while waiting for you to indicate
you're finished.
- Return either a promise or use the callback (3rd parameter) to report back to Gatsby when `sourceNodes` is fully executed. If a promise or callback isn't returned, Gatsby will continue on in the build process, before nodes are finished being created. Your nodes might not end up in the generated schema at compilation, or the process will hang while waiting for an indication that it's finished.

[`gatsby-node-helpers`](https://github.com/angeloashmore/gatsby-node-helpers),
a community-made NPM package, can help when writing source plugins. This
You are viewing a condensed version of this merge commit. You can view the full changes here.