Skip to content

Commit 73d2f71

Browse files
authored
Merge pull request #291 from blink1073/fix-docs
2 parents 5ee0276 + 3ad3a8a commit 73d2f71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/source/how_to_guides/write_config.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Note: the only unusable hook names are `before-prep-git` and `before-extract-rel
2828
This is where `jupyter-releaser` looks for configuration (first one found is used):
2929

3030
- `.jupyter-releaser.toml`
31-
- `pyproject.toml` (in the tools.jupyter-releaser section)
31+
- `pyproject.toml` (in the tool.jupyter-releaser section)
3232
- `package.json` (in the jupyter-releaser property)
3333

3434
Example `.jupyter-releaser.toml`:
@@ -46,13 +46,13 @@ before-tag-version = "npm run pre:tag:script"
4646
Example `pyproject.toml` section:
4747

4848
```toml
49-
[tools.jupyter-releaser.options]
49+
[tool.jupyter-releaser.options]
5050
dist_dir = "mydist"
5151

52-
[tools.jupyter-releaser]
52+
[tool.jupyter-releaser]
5353
skip = ["check-links"]
5454

55-
[tools.jupyter-releaser.hooks]
55+
[tool.jupyter-releaser.hooks]
5656
after-build-python = ["python scripts/cleanup.py", "python scripts/send_email.py"]
5757
```
5858

@@ -79,7 +79,7 @@ If you'd like to use dev versions for your repository between builds,
7979
use `dev` as the `post-version-spec` setting, e.g.
8080

8181
```toml
82-
[tools.jupyter-releaser.options]
82+
[tool.jupyter-releaser.options]
8383
post-version-spec = "dev"
8484
```
8585

0 commit comments

Comments
 (0)