Skip to content

Commit 110ab7a

Browse files
committed
fixed docstring error
1 parent 8f9648b commit 110ab7a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

stdnet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''An object relational mapper library for Redis remote data structures.'''
22
VERSION = (0, 7, 0, 'rc', 1)
33

4-
sphinxtogithub = False
4+
sphinxtogithub = True
55

66
from .exceptions import *
77
from .backends import *

stdnet/apps/columnts/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ def stats(self, start, end, fields=None):
108108
def imulti_stats(self, start=0, end=-1, series=None, fields=None,
109109
stats=None):
110110
'''Perform cross multivariate statistics calculation of
111-
this :clsss:`ColumnTS` and other optional *series*.'''
111+
this :class:`ColumnTS` and other optional *series*.'''
112112
stats = stats or self.default_multi_stats
113113
res = self.backend_structure().imulti_stats(start, end, fields, series,
114114
stats)
115115
return self.async_handle(res, self._stats)
116116

117117
def multi_stats(self, start, end, series=None, fields=None, stats=None):
118118
'''Perform cross multivariate statistics calculation of
119-
this :clsss:`ColumnTS` and other *series*.
119+
this :class:`ColumnTS` and other *series*.
120120
121121
:parameter start: the start date.
122122
:parameter start: the end date

0 commit comments

Comments
 (0)