Skip to content

Commit de4c096

Browse files
fix: proper backticks
1 parent 922103a commit de4c096

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

pandas/core/frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3208,8 +3208,8 @@ def to_html(
32083208
border : int or bool
32093209
When an integer value is provided, it sets the border attribute in
32103210
the opening tag, specifying the thickness of the border.
3211-
If ``False or 0 (zero)`` is passed, the border attribute will not
3212-
be present in the `<table>` tag.
3211+
If ``False`` or ``0`` is passed, the border attribute will not
3212+
be present in the ``<table>`` tag.
32133213
The default value for this parameter is governed by
32143214
``pd.options.display.html.border``.
32153215
table_id : str, optional

pandas/io/formats/format.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -900,9 +900,8 @@ def to_html(
900900
border : int or bool
901901
When an integer value is provided, it sets the border attribute in
902902
the opening tag, specifying the thickness of the border.
903-
If ``False or 0 (zero)`` is passed, the border attribute will not
904-
be present in the `<table>`tag.
905-
903+
If ``False`` or ``0`` is passed, the border attribute will not
904+
be present in the ``<table>`` tag.
906905
The default value for this parameter is governed by
907906
``pd.options.display.html.border``.
908907
table_id : str, optional

0 commit comments

Comments
 (0)