Skip to content

Commit 9f0f6a8

Browse files
--
Fix documentation server command path. The `http.server` command now uses the correct relative path `_build/html` for serving the generated documentation. PiperOrigin-RevId: 843407185
1 parent a581e00 commit 9f0f6a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ sphinx-build -b html . _build/html
2424
This will generate the documentation in the `docs/_build/html` directory. These files can be opened in a web browser directly, or you can use a simple HTTP server to serve the files. For example, you can run:
2525

2626
```bash
27-
python -m http.server -d docs/_build/html
27+
python -m http.server -d _build/html
2828
```
2929

3030
Then, open your web browser and navigate to `http://localhost:8000` to view the documentation.

0 commit comments

Comments
 (0)