Skip to content

Commit 00df491

Browse files
committed
Fix typos
1 parent 93dae90 commit 00df491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

IPython/lib/pretty.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def _repr_pretty_(self, p, cycle):
541541
class CallExpression:
542542
""" Object which emits a line-wrapped call expression in the form `__name(*args, **kwargs)` """
543543
def __init__(__self, __name, *args, **kwargs):
544-
# dunders are to avoid clashes with kwargs, as python's name manging
544+
# dunders are to avoid clashes with kwargs, as python's name managing
545545
# will kick in.
546546
self = __self
547547
self.name = __name
@@ -555,7 +555,7 @@ def inner(*args, **kwargs):
555555
return inner
556556

557557
def _repr_pretty_(self, p, cycle):
558-
# dunders are to avoid clashes with kwargs, as python's name manging
558+
# dunders are to avoid clashes with kwargs, as python's name managing
559559
# will kick in.
560560

561561
started = False

0 commit comments

Comments
 (0)