@@ -38,7 +38,7 @@ def cast(self, compiler, connection, **extra_context):
3838 A method to extend Django Cast class. Cast SQL query for given
3939 parameters.
4040
41- :type self: :class:`~django.db.models.functions.comparison. Cast`
41+ :type self: :class:`~django.db.models.functions.Cast`
4242 :param self: the instance of the class that owns this method.
4343
4444 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -71,7 +71,7 @@ def chr_(self, compiler, connection, **extra_context):
7171 A method to extend Django Chr class. Returns a SQL query where the code
7272 points are displayed as a string.
7373
74- :type self: :class:`~django.db.models.functions.text. Chr`
74+ :type self: :class:`~django.db.models.functions.Chr`
7575 :param self: the instance of the class that owns this method.
7676
7777 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -101,7 +101,7 @@ def concatpair(self, compiler, connection, **extra_context):
101101 A method to extend Django ConcatPair class. Concatenates a SQL query
102102 into the sequence of :class:`IfNull` objects.
103103
104- :type self: :class:`~django.db.models.functions.text. ConcatPair`
104+ :type self: :class:`~django.db.models.functions.ConcatPair`
105105 :param self: the instance of the class that owns this method.
106106
107107 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -132,7 +132,7 @@ def cot(self, compiler, connection, **extra_context):
132132 A method to extend Django Cot class. Returns a SQL query of calculated
133133 trigonometric cotangent function.
134134
135- :type self: :class:`~django.db.models.functions.math. Cot`
135+ :type self: :class:`~django.db.models.functions.Cot`
136136 :param self: the instance of the class that owns this method.
137137
138138 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -162,7 +162,7 @@ def degrees(self, compiler, connection, **extra_context):
162162 A method to extend Django Degress class. Returns a SQL query of the
163163 angle converted to degrees.
164164
165- :type self: :class:`~django.db.models.functions.math. Degrees`
165+ :type self: :class:`~django.db.models.functions.Degrees`
166166 :param self: the instance of the class that owns this method.
167167
168168 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -190,8 +190,8 @@ def degrees(self, compiler, connection, **extra_context):
190190def left_and_right (self , compiler , connection , ** extra_context ):
191191 """A method to extend Django Left and Right classes.
192192
193- :type self: :class:`~django.db.models.functions.text. Left` or
194- :class:`~django.db.models.functions.text. Right`
193+ :type self: :class:`~django.db.models.functions.Left` or
194+ :class:`~django.db.models.functions.Right`
195195 :param self: the instance of the class that owns this method.
196196
197197 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -216,7 +216,7 @@ def log(self, compiler, connection, **extra_context):
216216 A method to extend Django Log class. Returns a SQL query of calculated
217217 logarithm.
218218
219- :type self: :class:`~django.db.models.functions.math. Log`
219+ :type self: :class:`~django.db.models.functions.Log`
220220 :param self: the instance of the class that owns this method.
221221
222222 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -245,7 +245,7 @@ def ord_(self, compiler, connection, **extra_context):
245245 A method to extend Django Ord class. Returns a SQL query of the
246246 expression converted to ord.
247247
248- :type self: :class:`~django.db.models.functions.text. Ord`
248+ :type self: :class:`~django.db.models.functions.Ord`
249249 :param self: the instance of the class that owns this method.
250250
251251 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -275,7 +275,7 @@ def pi(self, compiler, connection, **extra_context):
275275 A method to extend Django Pi class. Returns a SQL query of the Pi
276276 constant.
277277
278- :type self: :class:`~django.db.models.functions.math. Pi`
278+ :type self: :class:`~django.db.models.functions.Pi`
279279 :param self: the instance of the class that owns this method.
280280
281281 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -302,7 +302,7 @@ def radians(self, compiler, connection, **extra_context):
302302 A method to extend Django Radians class. Returns a SQL query of the
303303 angle converted to radians.
304304
305- :type self: :class:`~django.db.models.functions.math. Radians`
305+ :type self: :class:`~django.db.models.functions.Radians`
306306 :param self: the instance of the class that owns this method.
307307
308308 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -332,7 +332,7 @@ def strindex(self, compiler, connection, **extra_context):
332332 A method to extend Django StrIndex class. Returns a SQL query of the
333333 string position.
334334
335- :type self: :class:`~django.db.models.functions.text. StrIndex`
335+ :type self: :class:`~django.db.models.functions.StrIndex`
336336 :param self: the instance of the class that owns this method.
337337
338338 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -359,7 +359,7 @@ def substr(self, compiler, connection, **extra_context):
359359 A method to extend Django Substr class. Returns a SQL query of a
360360 substring.
361361
362- :type self: :class:`~django.db.models.functions.text. Substr`
362+ :type self: :class:`~django.db.models.functions.Substr`
363363 :param self: the instance of the class that owns this method.
364364
365365 :type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
0 commit comments