Skip to content

Commit 21eed60

Browse files
committed
fix wrong quotes
1 parent 6935634 commit 21eed60

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

objmodel/01-smalltalk-like/objmodel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def isinstance(self, cls):
2020
return self.cls.issubclass(cls)
2121

2222
def send(self, methname, *args):
23-
""" send message 'methname' with arguments `args` to object """
23+
""" send message 'methname' with arguments 'args' to object """
2424
meth = self.cls._read_from_class(methname)
2525
return meth(self, *args)
2626

objmodel/02-attr-based/objmodel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def isinstance(self, cls):
2828
return self.cls.issubclass(cls)
2929

3030
def send(self, methname, *args):
31-
""" send message 'methname' with arguments `args` to object """
31+
""" send message 'methname' with arguments 'args' to object """
3232
meth = self.read_attr(methname)
3333
return meth(*args)
3434

objmodel/03-customizable/objmodel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def isinstance(self, cls):
3232
return self.cls.issubclass(cls)
3333

3434
def send(self, methname, *args):
35-
""" send message 'methname' with arguments `args` to object """
35+
""" send message 'methname' with arguments 'args' to object """
3636
meth = self.read_attr(methname)
3737
return meth(*args)
3838

0 commit comments

Comments
 (0)