Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions python/tvm_ffi/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------
Expand All @@ -76,7 +76,7 @@ class Array(core.Object, collections.abc.Sequence):

See Also
--------
{py:func}`tvm_ffi.convert`
:py:func:`tvm_ffi.convert`

Examples
--------
Expand Down Expand Up @@ -173,7 +173,7 @@ def __iter__(self):
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
----------
Expand All @@ -182,7 +182,7 @@ class Map(core.Object, collections.abc.Mapping):

See Also
--------
{py:func}`tvm_ffi.convert`
:py:func:`tvm_ffi.convert`

Examples
--------
Expand Down
Loading