Skip to content

Commit 26710aa

Browse files
authored
More fixes to contributing documentation guide (#454)
I meant to send this with #447 but I think I messed up the commit, sorry!
1 parent 9dabb9e commit 26710aa

File tree

1 file changed

+3
-3
lines changed
  • docs/developers/contributing/documentation

1 file changed

+3
-3
lines changed

docs/developers/contributing/documentation/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,17 +293,17 @@ you can speed up this build by running `make html-noplot` instead. This will ski
293293
gallery build, which involves launching up napari and rendering all the examples.
294294

295295
```bash
296-
make docs-install
296+
make docs-install # only needed the first time
297297
make html-noplot
298298
```
299299

300-
The rendered HTML will be placed in `docs/_build`. Find `index.html` in this
300+
The rendered HTML will be placed in `docs/_build/html`. Find `index.html` in this
301301
folder and drag it into a browser to preview the website with your new document.
302302
You can also run this Python one-liner to deploy a quick local server on
303303
[http://localhost:8000](http://localhost:8000):
304304

305305
```shell
306-
$ python3 -m http.server --directory docs/_build
306+
$ python3 -m http.server --directory docs/_build/html
307307
```
308308

309309
````{note}

0 commit comments

Comments
 (0)