summaryrefslogtreecommitdiff
path: root/deferred_operand.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-05-29 17:53:26 -0700
committerScott Gasch <[email protected]>2022-05-29 17:53:26 -0700
commitf3dbc7dc19ba5703f8f5aa9bf8af3c491b3510f6 (patch)
tree0cc9ffe0d6c998c0ccd19983f5c514834d6459ae /deferred_operand.py
parent0fec151ee0b3596016d7a094af13085ef01a8bb4 (diff)
Clean up more docs to work with sphinx.
Diffstat (limited to 'deferred_operand.py')
-rw-r--r--deferred_operand.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/deferred_operand.py b/deferred_operand.py
index df76237..9edbb9e 100644
--- a/deferred_operand.py
+++ b/deferred_operand.py
@@ -19,7 +19,8 @@ T = TypeVar('T')
class DeferredOperand(ABC, Generic[T]):
"""A wrapper around an operand whose value is deferred until it is
- needed. See subclass SmartFuture for an example usage.
+ needed (i.e. accessed). See the subclass :class:`SmartFuture` for
+ an example usage and/or a more useful patten.
"""
@abstractmethod