Merge pull request #7058 from blueyed/doc-store

doc: minor fixes for Store
This commit is contained in:
Ran Benita 2020-04-17 17:10:35 +03:00 committed by GitHub
commit 731c340be6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class StoreKey(Generic[T]):
class Store:
"""Store is a type-safe heterogenous mutable mapping that
allows keys and value types to be defined separately from
where it is defined.
where it (the Store) is created.
Usually you will be given an object which has a ``Store``:
@ -77,7 +77,7 @@ class Store:
Good solution: module Internal adds a ``Store`` to the object. Module
External mints StoreKeys for its own keys. Module External stores and
retrieves its data using its keys.
retrieves its data using these keys.
"""
__slots__ = ("_store",)