From 25d8fe0cb0696264858b471ec9a2ba862ddf2d18 Mon Sep 17 00:00:00 2001 From: imbolc Date: Sun, 5 Jan 2025 15:42:52 +0600 Subject: [PATCH] docs: Fix SecondaryScan method docstrings --- src/transaction/query/scan/secondary_scan.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transaction/query/scan/secondary_scan.rs b/src/transaction/query/scan/secondary_scan.rs index f398e18b..82afd84d 100644 --- a/src/transaction/query/scan/secondary_scan.rs +++ b/src/transaction/query/scan/secondary_scan.rs @@ -91,7 +91,7 @@ where }) } - /// Iterate over all values by secondary key. + /// Iterate over all values by secondary key in a range. /// /// Anatomy of a secondary key it is a `enum` with the following structure: `Key::`. /// @@ -150,7 +150,7 @@ where }) } - /// Iterate over all values by secondary key. + /// Iterate over all values by secondary key starting with a prefix. /// /// Anatomy of a secondary key it is a `enum` with the following structure: `Key::`. ///