docs/library/btree: Fix method links to explicitly specify class.

So they don't clash with other potential references.

Signed-off-by: Koudai Aono <koxudaxi@gmail.com>
This commit is contained in:
Koudai Aono 2025-07-10 01:50:55 +09:00 committed by Damien George
parent 769453c750
commit ab7c5a1733

View file

@ -151,10 +151,10 @@ Constants
.. data:: INCL
A flag for `keys()`, `values()`, `items()` methods to specify that
A flag for :meth:`btree.keys`, :meth:`btree.values`, :meth:`btree.items` methods to specify that
scanning should be inclusive of the end key.
.. data:: DESC
A flag for `keys()`, `values()`, `items()` methods to specify that
A flag for :meth:`btree.keys`, :meth:`btree.values`, :meth:`btree.items` methods to specify that
scanning should be in descending direction of keys.