Skip to content

Commit 731c340

Browse files
authored
Merge pull request #7058 from blueyed/doc-store
doc: minor fixes for Store
2 parents 7789b51 + accea46 commit 731c340

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/_pytest/store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class StoreKey(Generic[T]):
2727
class Store:
2828
"""Store is a type-safe heterogenous mutable mapping that
2929
allows keys and value types to be defined separately from
30-
where it is defined.
30+
where it (the Store) is created.
3131
3232
Usually you will be given an object which has a ``Store``:
3333
@@ -77,7 +77,7 @@ class Store:
7777
7878
Good solution: module Internal adds a ``Store`` to the object. Module
7979
External mints StoreKeys for its own keys. Module External stores and
80-
retrieves its data using its keys.
80+
retrieves its data using these keys.
8181
"""
8282

8383
__slots__ = ("_store",)

0 commit comments

Comments
 (0)