From 7efd95b85e9f15a7ba7df85a4b905ed7bbc4c148 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Thu, 13 Aug 2015 11:32:11 +0200 Subject: [PATCH] Typo. --- cassandra/cqlengine/columns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/cqlengine/columns.py b/cassandra/cqlengine/columns.py index 185cccfb..11481bcd 100644 --- a/cassandra/cqlengine/columns.py +++ b/cassandra/cqlengine/columns.py @@ -313,7 +313,7 @@ class Text(Column): """ :param int min_length: Sets the minimum length of this string, for validation purposes. Defaults to 1 if this is a ``required`` column. Otherwise, None. - :param int max_lemgth: Sets the maximum length of this string, for validation purposes. + :param int max_length: Sets the maximum length of this string, for validation purposes. """ self.min_length = min_length or (1 if kwargs.get('required', False) else None) self.max_length = max_length