From b31f58e9766dea5228dcd197c29d5b781972debe Mon Sep 17 00:00:00 2001
From: Pavlo Kapyshin <i@93z.org>
Date: Mon, 20 Mar 2017 18:28:11 +0200
Subject: [PATCH] Fix few typos

---
 pymbolic/primitives.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pymbolic/primitives.py b/pymbolic/primitives.py
index 1750954..4bada79 100644
--- a/pymbolic/primitives.py
+++ b/pymbolic/primitives.py
@@ -520,7 +520,7 @@ class Expression(object):
     # {{{ logical op constructors
 
     def not_(self):
-        """Return *self* wrapped in a :class:`LogicalNot.
+        """Return *self* wrapped in a :class:`LogicalNot`.
 
         .. versionadded:: 2015.2
         """
@@ -607,7 +607,7 @@ class Expression(object):
     # }}}
 
     def __iter__(self):
-        # prevent infinite loops (e.g. when inseserting into numpy arrays)
+        # prevent infinite loops (e.g. when inserting into numpy arrays)
         raise TypeError("expression types are not iterable")
 
 
@@ -682,7 +682,7 @@ class Call(AlgebraicLeaf):
 
     .. attribute:: parameters
 
-        A :class:`tuple` of positional paramters, each element
+        A :class:`tuple` of positional parameters, each element
         of which is a :class:`Expression` or a constant.
 
     """
@@ -718,7 +718,7 @@ class CallWithKwargs(AlgebraicLeaf):
 
     .. attribute:: parameters
 
-        A :class:`tuple` of positional paramters, each element
+        A :class:`tuple` of positional parameters, each element
         of which is a :class:`Expression` or a constant.
 
     .. attribute:: kw_parameters
-- 
GitLab