Skip to content

Commit fe0c4e4

Browse files
committed
DOC: v0.13.0.txt typos
1 parent ced66b4 commit fe0c4e4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

doc/source/release.rst

+2
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,8 @@ Experimental Features
303303
you to select elements of a ``DataFrame`` using a natural query syntax nearly
304304
identical to Python syntax.
305305

306+
.. _release.bug_fixes-0.13.0:
307+
306308

307309
Bug Fixes
308310
~~~~~~~~~

doc/source/v0.13.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ Experimental
444444
.. ipython:: python
445445

446446
n = 20
447-
df = DataFrame(randint(n, size=(n, 3)), columns=['a', 'b', 'c'])
447+
df = DataFrame(np.random.randint(n, size=(n, 3)), columns=['a', 'b', 'c'])
448448
df.query('a < b < c')
449449

450450
selects all the rows of ``df`` where ``a < b < c`` evaluates to ``True``.
@@ -571,7 +571,7 @@ to unify methods and behaviors. Series formerly subclassed directly from
571571
Bug Fixes
572572
~~~~~~~~~
573573

574-
See :ref:`V0.13.0 Bug Fixes<release:bug_fixes-0.13.0>` for an extensive list of bugs that have been fixed in 0.13.0.
574+
See :ref:`V0.13.0 Bug Fixes<release.bug_fixes-0.13.0>` for an extensive list of bugs that have been fixed in 0.13.0.
575575

576576
See the :ref:`full release notes
577577
<release>` or issue tracker

0 commit comments

Comments
 (0)