Skip to content

Commit 6e4cd61

Browse files
committed
Change the theme and fix a typo.
1 parent 28987bc commit 6e4cd61

File tree

3 files changed

+4
-71
lines changed

3 files changed

+4
-71
lines changed

docs/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
extensions = ["sphinx.ext.intersphinx"]
1717

18-
templates_path = ['_templates']
1918
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
2019
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
2120

@@ -25,4 +24,6 @@
2524
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2625

2726
html_theme = 'shibuya'
28-
html_static_path = ['_static']
27+
html_theme_options = {
28+
"accent_color": "sky",
29+
}

docs/index.md

Lines changed: 0 additions & 68 deletions
This file was deleted.

docs/usage/value_storage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ object (these may be ``NULL``, in which case the value is skipped).
7373

7474
Both :c:func:`PyAwaitable_SaveValues` and
7575
:c:func:`PyAwaitable_UnpackValues` can fail. They return ``-1`` with an
76-
exception set on failure, and `0` on success.
76+
exception set on failure, and ``0`` on success.
7777

7878
For example, if you called ``PyAwaitable_SaveValues(awaitable, 3, /* ... */)``,
7979
you must pass three non-``NULL`` ``PyObject *`` references, and then pass

0 commit comments

Comments
 (0)