From 9e129bb370be747277c3591218a244a1b69861f2 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Sun, 5 Oct 2025 10:28:52 +0300 Subject: [PATCH] fix: some newly surfaced typos --- arraycontext/impl/jax/fake_numpy.py | 2 +- arraycontext/impl/pytato/outline.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arraycontext/impl/jax/fake_numpy.py b/arraycontext/impl/jax/fake_numpy.py index 89595564..76c22062 100644 --- a/arraycontext/impl/jax/fake_numpy.py +++ b/arraycontext/impl/jax/fake_numpy.py @@ -94,7 +94,7 @@ def _full_like_array(self, # }}} - # {{{ array manipulation routies + # {{{ array manipulation routines def ravel(self, a: ArrayOrContainerOrScalar, order="C"): """ diff --git a/arraycontext/impl/pytato/outline.py b/arraycontext/impl/pytato/outline.py index 3ea7f68d..aa33450e 100644 --- a/arraycontext/impl/pytato/outline.py +++ b/arraycontext/impl/pytato/outline.py @@ -64,7 +64,7 @@ def _get_arg_id_to_arg( kwargs: Mapping[str, ArrayOrContainerOrScalar | None] ) -> immutabledict[tuple[SerializationKey, ...], pt.Array]: """ - Helper for :meth:`OulinedCall.__call__`. Extracts mappings from argument id + Helper for :meth:`OutlinedCall.__call__`. Extracts mappings from argument id to argument values. See :attr:`CompiledFunction.input_id_to_name_in_function` for argument-id's representation. @@ -120,7 +120,7 @@ def _get_arg_id_to_placeholder( prefix: str | None = None ) -> immutabledict[tuple[SerializationKey, ...], pt.Placeholder]: """ - Helper for :meth:`OulinedCall.__call__`. Constructs a :class:`pytato.Placeholder` + Helper for :meth:`OutlinedCall.__call__`. Constructs a :class:`pytato.Placeholder` for each argument in *arg_id_to_arg*. See :attr:`CompiledFunction.input_id_to_name_in_function` for argument-id's representation.