Skip to content

Commit

Permalink
Merge pull request #151 from musically-ut/patch-1
Browse files Browse the repository at this point in the history
Fix parameter names in documentation.
  • Loading branch information
Jeffrey Jenkins committed Aug 4, 2016
2 parents cca9e68 + 4b68914 commit f1ee35a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mongoalchemy/fields/fields.py
Expand Up @@ -133,8 +133,8 @@ def validate_wrap(self, value, *types):
class IntField(NumberField):
''' Subclass of :class:`~NumberField` for ``int``'''
def __init__(self, **kwargs):
''' :param max_length: maximum value
:param min_length: minimum value
''' :param max_value: maximum value
:param min_value: minimum value
:param kwargs: arguments for :class:`Field`
'''
super(IntField, self).__init__(constructor=int, **kwargs)
Expand Down

0 comments on commit f1ee35a

Please sign in to comment.