From 00df491560ce92c13125f8657a2ce35bb608d71d 2024-10-03 12:27:15 From: Andrew Kreimer Date: 2024-10-03 12:27:15 Subject: [PATCH] Fix typos --- diff --git a/IPython/lib/pretty.py b/IPython/lib/pretty.py index 8a24632..48422c2 100644 --- a/IPython/lib/pretty.py +++ b/IPython/lib/pretty.py @@ -541,7 +541,7 @@ class RawText: class CallExpression: """ Object which emits a line-wrapped call expression in the form `__name(*args, **kwargs)` """ def __init__(__self, __name, *args, **kwargs): - # dunders are to avoid clashes with kwargs, as python's name manging + # dunders are to avoid clashes with kwargs, as python's name managing # will kick in. self = __self self.name = __name @@ -555,7 +555,7 @@ class CallExpression: return inner def _repr_pretty_(self, p, cycle): - # dunders are to avoid clashes with kwargs, as python's name manging + # dunders are to avoid clashes with kwargs, as python's name managing # will kick in. started = False