diff --git a/website/docs/usage/projects.md b/website/docs/usage/projects.md index 6396e9eba..492345f2f 100644 --- a/website/docs/usage/projects.md +++ b/website/docs/usage/projects.md @@ -197,7 +197,7 @@ $ python -m spacy project push ``` The `remotes` section in your `project.yml` lets you assign names to the -different storages. To download a state from a remote storage, you can use the +different storages. To download state from a remote storage, you can use the [`spacy project pull`](/api/cli#project-pull) command. For more details, see the docs on [remote storage](#remote). @@ -502,7 +502,7 @@ commands: When your custom project is ready and you want to share it with others, you can use the [`spacy project document`](/api/cli#project-document) command to -**auto-generate** a pretty, markdown-formatted `README` file based on your +**auto-generate** a pretty, Markdown-formatted `README` file based on your project's `project.yml`. It will list all commands, workflows and assets defined in the project and include details on how to run the project, as well as links to the relevant spaCy documentation to make it easy for others to get started diff --git a/website/docs/usage/saving-loading.md b/website/docs/usage/saving-loading.md index 4e8280baf..c4957763e 100644 --- a/website/docs/usage/saving-loading.md +++ b/website/docs/usage/saving-loading.md @@ -463,7 +463,7 @@ entry_points={ } ``` -The factory can also implement other pipeline components like `to_disk` and +The factory can also implement other pipeline component methods like `to_disk` and `from_disk` for serialization, or even `update` to make the component trainable. If a component exposes a `from_disk` method and is included in a pipeline, spaCy will call it on load. This lets you ship custom data with your pipeline package.