Skip to content

Commit 1f2085e

Browse files
andymaheshwTomAugspurger
authored andcommitted
Option Page Typos (pandas-dev#16421)
* capitalization update * update * undoing capitalization
1 parent d5a681b commit 1f2085e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/source/options.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can get/set options directly as attributes of the top-level ``options`` attr
2828
pd.options.display.max_rows = 999
2929
pd.options.display.max_rows
3030
31-
There is also an API composed of 5 relevant functions, available directly from the ``pandas``
31+
The API is composed of 5 relevant functions, available directly from the ``pandas``
3232
namespace:
3333

3434
- :func:`~pandas.get_option` / :func:`~pandas.set_option` - get/set the value of a single option.
@@ -40,7 +40,7 @@ namespace:
4040
**Note:** developers can check out pandas/core/config.py for more info.
4141

4242
All of the functions above accept a regexp pattern (``re.search`` style) as an argument,
43-
and so passing in a substring will work - as long as it is unambiguous :
43+
and so passing in a substring will work - as long as it is unambiguous:
4444

4545
.. ipython:: python
4646
@@ -241,7 +241,7 @@ suggestion.
241241
df
242242
243243
``display.chop_threshold`` sets at what level pandas rounds to zero when
244-
it displays a Series of DataFrame. Note, this does not effect the
244+
it displays a Series of DataFrame. Note, this does not effect the
245245
precision at which the number is stored.
246246

247247
.. ipython:: python
@@ -420,15 +420,15 @@ mode.chained_assignment warn Raise an exception, warn, or no
420420
action if trying to use chained
421421
assignment, The default is warn
422422
mode.sim_interactive False Whether to simulate interactive mode
423-
for purposes of testing
423+
for purposes of testing.
424424
mode.use_inf_as_null False True means treat None, NaN, -INF,
425425
INF as null (old way), False means
426426
None and NaN are null, but INF, -INF
427427
are not null (new way).
428428
compute.use_bottleneck True Use the bottleneck library to accelerate
429-
computation if it is installed
429+
computation if it is installed.
430430
compute.use_numexpr True Use the numexpr library to accelerate
431-
computation if it is installed
431+
computation if it is installed.
432432
=================================== ============ ==================================
433433

434434

0 commit comments

Comments
 (0)