Skip to content

Commit

Permalink
Use 'i' and 'k' to better distinguish variables in an example (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwlchan committed Nov 4, 2020
1 parent f2dabea commit cd2f886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/init.rst
Expand Up @@ -107,9 +107,9 @@ Please note that as with function and method signatures, ``default=[]`` will *no
... class C(object):
... x = attr.ib(default=[])
>>> i = C()
>>> j = C()
>>> k = C()
>>> i.x.append(42)
>>> j.x
>>> k.x
[42]


Expand Down

0 comments on commit cd2f886

Please sign in to comment.