This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git
The following commit(s) were added to refs/heads/dev by this push:
new d6845f7 [DOCS] Fix py:func format hyperlink (#16)
d6845f7 is described below
commit d6845f7d94c522d19fb13025a6ae86acc7860c7c
Author: Yaxing Cai <[email protected]>
AuthorDate: Mon Sep 15 03:26:27 2025 -0700
[DOCS] Fix py:func format hyperlink (#16)
---
python/tvm_ffi/container.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/python/tvm_ffi/container.py b/python/tvm_ffi/container.py
index e28b995..f64028f 100644
--- a/python/tvm_ffi/container.py
+++ b/python/tvm_ffi/container.py
@@ -67,7 +67,7 @@ def getitem_helper(obj, elem_getter, length, idx):
class Array(core.Object, collections.abc.Sequence):
"""Array container that represents a sequence of values in ffi.
- {py:func}`tvm_ffi.convert` will map python list/tuple to this class.
+ :py:func:`tvm_ffi.convert` will map python list/tuple to this class.
Parameters
----------
@@ -76,7 +76,7 @@ class Array(core.Object, collections.abc.Sequence):
See Also
--------
- {py:func}`tvm_ffi.convert`
+ :py:func:`tvm_ffi.convert`
Examples
--------
@@ -173,7 +173,7 @@ class ItemsView(collections.abc.ItemsView):
class Map(core.Object, collections.abc.Mapping):
"""Map container.
- {py:func}`tvm_ffi.convert` will map python dict to this class.
+ :py:func:`tvm_ffi.convert` will map python dict to this class.
Parameters
----------
@@ -182,7 +182,7 @@ class Map(core.Object, collections.abc.Mapping):
See Also
--------
- {py:func}`tvm_ffi.convert`
+ :py:func:`tvm_ffi.convert`
Examples
--------