Skip to content

Commit e451284

Browse files
committed
Fix copy
1 parent 06e803d commit e451284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/API_specification/array_api/creation_functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def linspace(start: Union[int, float, complex], stop: Union[int, float, complex]
217217
r"""
218218
Returns evenly spaced numbers over a specified interval.
219219
220-
Let :math:`N` be the number of generated values (which is either ``num`` or ``num+1`` depending on whether ``endpoint`` is ``False`` or ``True``, respectively). For real-valued output arrays, the spacing between values is given by
220+
Let :math:`N` be the number of generated values (which is either ``num`` or ``num+1`` depending on whether ``endpoint`` is ``True`` or ``False``, respectively). For real-valued output arrays, the spacing between values is given by
221221
222222
.. math::
223223
\Delta_{\textrm{real}} = \frac{\textrm{stop} - \textrm{start}}{N - 1}

0 commit comments

Comments
 (0)