From 56b2f1ed2e879e923145742e54af0b9d3ba171bb Mon Sep 17 00:00:00 2001
From: Alexandru Fikl <alexfikl@gmail.com>
Date: Tue, 2 Nov 2021 14:28:04 -0500
Subject: [PATCH] fix small typos

---
 arraycontext/container/dataclass.py | 2 +-
 arraycontext/impl/pytato/compile.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arraycontext/container/dataclass.py b/arraycontext/container/dataclass.py
index 6549207..203246c 100644
--- a/arraycontext/container/dataclass.py
+++ b/arraycontext/container/dataclass.py
@@ -37,7 +37,7 @@ from arraycontext.container import is_array_container_type
 # {{{ dataclass containers
 
 def dataclass_array_container(cls: type) -> type:
-    """A class decorator that makes the class to which it is applied a
+    """A class decorator that makes the class to which it is applied an
     :class:`ArrayContainer` by registering appropriate implementations of
     :func:`serialize_container` and :func:`deserialize_container`.
     *cls* must be a :func:`~dataclasses.dataclass`.
diff --git a/arraycontext/impl/pytato/compile.py b/arraycontext/impl/pytato/compile.py
index a772a85..be76e71 100644
--- a/arraycontext/impl/pytato/compile.py
+++ b/arraycontext/impl/pytato/compile.py
@@ -288,7 +288,7 @@ class CompiledFunction:
 
     .. attribute:: input_id_to_name_in_program
 
-        A mapping from input id to the placholder name in
+        A mapping from input id to the placeholder name in
         :attr:`CompiledFunction.pytato_program`. Input id is represented as the
         position of :attr:`~LazilyCompilingFunctionCaller.f`'s argument augmented
         with the leaf array's key if the argument is an array container.
-- 
GitLab