Skip to content

Commit

Permalink
DOC: Fix markdown style inline code to restructured text style inline…
Browse files Browse the repository at this point in the history
… code.
  • Loading branch information
jakirkham committed Jan 15, 2016
1 parent aa6335c commit fb41f00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/release/1.11.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ mention it here for completeness.
New Features
============

* `np.histogram` now provides plugin estimators for automatically
* ``np.histogram`` now provides plugin estimators for automatically
estimating the optimal number of bins. Passing one of ['auto', 'fd',
'scott', 'rice', 'sturges'] as the argument to 'bins' results in the
corresponding estimator being used.
Expand Down Expand Up @@ -97,8 +97,8 @@ New Features
- np.int_ (long), np.intp

The specification is by precision rather than by C type. Hence, on some
platforms np.int64 may be a `long` instead of `long long` even if the
specified dtype is `long long` because the two may have the same
platforms np.int64 may be a ``long`` instead of ``long long`` even if the
specified dtype is ``long long`` because the two may have the same
precision. The resulting type depends on which C type numpy uses for the
given precision. The byteorder specification is also ignored, the
generated arrays are always in native byte order.
Expand Down Expand Up @@ -187,7 +187,7 @@ more such dual contiguous arrays and breaks some existing code as a result.
Note that this also affects changing the dtype by assigning to the dtype
attribute of an array. The aim of this deprecation is to restrict views to
c_contiguous arrays at some future time. A work around that is backward
compatible is to use `a.T.view(...).T` instead. A parameter will also be
compatible is to use ``a.T.view(...).T`` instead. A parameter will also be
added to the view method to explicitly ask for Fortran order views, but
that will not be backward compatible.

Expand Down

0 comments on commit fb41f00

Please sign in to comment.