Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
__imod_ > __imod__
  • Loading branch information
koorgoo committed Aug 15, 2013
1 parent d1faea7 commit a14a753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magicmethods.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Each of these methods should return the value that the variable on the left hand
`__itruediv__(self, other)`
: Implements _true_ division with assignment. Note that this only works when `from __future__ import division` is in effect.

`__imod_(self, other)`
`__imod__(self, other)`
: Implements modulo with assignment using the `%=` operator.

`__ipow__`
Expand Down

0 comments on commit a14a753

Please sign in to comment.