From 7ec975bcf1108fcc62710b1cd67e69bb5641271e Mon Sep 17 00:00:00 2001
From: Kaushik Kulkarni <kaushikcfd@gmail.com>
Date: Tue, 29 Jun 2021 05:59:50 -0500
Subject: [PATCH] LazilyCompilingFunctionCaller: better docs

Co-authored-by: Andreas Kloeckner <inform@tiker.net>
---
 arraycontext/impl/pytato/compile.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py
index 127c125..6ebe0f2 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__
     """
-- 
GitLab