zoeygxy commented on a change in pull request #15388: Doc
URL: https://github.com/apache/incubator-mxnet/pull/15388#discussion_r298469097
##########
File path: python/mxnet/ndarray/numpy/_op.py
##########
@@ -242,6 +253,17 @@ def arange(start, stop=None, step=1, dtype=None,
ctx=None):
``ceil((stop - start)/step)``. Because of floating point overflow,
this rule may result in the last element of `out` being greater
than `stop`.
+
+ Examples
+ --------
+ >>> np.arange(3)
+ array([0., 1., 2.])
+ >>> np.arange(3,7)
+ array([3., 4., 5., 6.])
+ >>> np.arange(3,7,2)
Review comment:
One space after ',' among the function inputs
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services