Closes #20005: Fix typo in operator docs. Patch by Claudiu Popa.

This commit is contained in:
Zachary Ware 2013-12-18 12:22:35 -06:00
commit e61f4df275
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ expect a function argument.
``(b.name, b.date)``.
* After ``f = attrgetter('name.first', 'name.last')``, the call ``f(b)``
returns ``(r.name.first, r.name.last)``.
returns ``(b.name.first, b.name.last)``.
Equivalent to::