From 501ad79aca3bd2990f97d6340b7170104f19e095 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 8 Jul 2024 14:17:28 -0500 Subject: [PATCH] Remove an extra space after definition of the return type pytato.target.BoundProgram --- arraycontext/impl/pytato/compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py index 41e1c0de..523ef3a4 100644 --- a/arraycontext/impl/pytato/compile.py +++ b/arraycontext/impl/pytato/compile.py @@ -577,7 +577,7 @@ def _args_to_cl_buffers(actx, input_id_to_name_in_program, arg_id_to_arg): class CompiledFunction(abc.ABC): """ - A callable which captures the :class:`pytato.target.BoundProgram` resulting + A callable which captures the :class:`pytato.target.BoundProgram` resulting from calling :attr:`~BaseLazilyCompilingFunctionCaller.f` with a given set of input types, and generating :mod:`loopy` IR from it.