diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py index 127c125247bfe54ad3471361b66eda95c373ef44..6ebe0f234ce575342ce7be65ca649eba0940ac41 100644 --- a/arraycontext/impl/pytato/compile.py +++ b/arraycontext/impl/pytato/compile.py @@ -138,13 +138,14 @@ def _get_arg_id_to_arg_and_arg_id_to_descr(args: Tuple[Any, ...] @dataclass class LazilyCompilingFunctionCaller: """ - Records a side-effect-free callable :attr:`LazilyCompilingFunctionCaller.f`, that - would be specialized for different input types - :meth:`LazilyCompilingFunctionCaller.__call__` is invoked with. + Records a side-effect-free callable + :attr:`LazilyCompilingFunctionCaller.f` that can be specialized for the + input types with which :meth:`LazilyCompilingFunctionCaller.__call__` is + invoked. .. attribute:: f - The callable that would be specialized into :mod:`pytato` DAGs. + The callable that will be called to obtain :mod:`pytato` DAGs. .. automethod:: __call__ """