diff options
| author | Koudai Aono <koxudaxi@gmail.com> | 2025-07-10 01:50:55 +0900 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-08-01 22:58:26 +1000 |
| commit | ab7c5a1733b394af43035bdcf844b91fd7756dd9 (patch) | |
| tree | a3fa8d0b8d9d548db654edccca6162db3039abf6 | |
| parent | 769453c7504ebf71d65a57767fbeea41f2de63f4 (diff) | |
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>
| -rw-r--r-- | docs/library/btree.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/btree.rst b/docs/library/btree.rst index 9d1dcf111..574669551 100644 --- a/docs/library/btree.rst +++ b/docs/library/btree.rst @@ -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. |
