Clean up more docs to work with sphinx.
[python_utils.git] / deferred_operand.py
index df762376c1b16374440c2a5ea7cda8d568bd5e58..9edbb9e8072b451ffc13f447235e3da5505bcff6 100644 (file)
@@ -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