Skip to content

Commit e1bac0c

Browse files
committed
DOC: Clarify display.precision
- Fix #21004
1 parent 3a043f2 commit e1bac0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/config_init.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ def use_numba_cb(key):
8585

8686
pc_precision_doc = """
8787
: int
88-
Floating point output precision (number of significant digits). This is
89-
only a suggestion
88+
Floating point output precision (in terms of decimal places). Similar to
89+
numpy's ``precision`` print option.
9090
"""
9191

9292
pc_colspace_doc = """
@@ -249,7 +249,7 @@ def use_numba_cb(key):
249249

250250
pc_max_seq_items = """
251251
: int or None
252-
when pretty-printing a long sequence, no more then `max_seq_items`
252+
When pretty-printing a long sequence, no more then `max_seq_items`
253253
will be printed. If items are omitted, they will be denoted by the
254254
addition of "..." to the resulting string.
255255

0 commit comments

Comments
 (0)