From 5677683736363a0fe8013e604d9ead22a49d2d17 Mon Sep 17 00:00:00 2001
From: Joe Hamman <jhamman1@gmail.com>
Date: Mon, 4 Nov 2024 20:52:17 -0800
Subject: [PATCH] Update src/zarr/abc/store.py

---
 src/zarr/abc/store.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/zarr/abc/store.py b/src/zarr/abc/store.py
index c7f21df508..2d26d7dcb3 100644
--- a/src/zarr/abc/store.py
+++ b/src/zarr/abc/store.py
@@ -342,8 +342,8 @@ def list(self) -> AsyncGenerator[str, None]:
     @abstractmethod
     def list_prefix(self, prefix: str) -> AsyncGenerator[str, None]:
         """
-        Retrieve all keys in the store that begin with a given prefix. Keys are returned as
-        absolute paths (i.e. including the prefix).
+        Retrieve all keys in the store that begin with a given prefix. Keys are returned relative 
+        to the root of the store.
 
         Parameters
         ----------