Skip to content

Commit cd2f886

Browse files
authored
Use 'i' and 'k' to better distinguish variables in an example (#713)
1 parent f2dabea commit cd2f886

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/init.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ Please note that as with function and method signatures, ``default=[]`` will *no
107107
... class C(object):
108108
... x = attr.ib(default=[])
109109
>>> i = C()
110-
>>> j = C()
110+
>>> k = C()
111111
>>> i.x.append(42)
112-
>>> j.x
112+
>>> k.x
113113
[42]
114114

115115

0 commit comments

Comments
 (0)