Skip to content

Commit

Permalink
fix: proper backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
ShashwatAgrawal20 committed Feb 4, 2025
1 parent 922103a commit de4c096
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3208,8 +3208,8 @@ def to_html(
border : int or bool
When an integer value is provided, it sets the border attribute in
the opening tag, specifying the thickness of the border.
If ``False or 0 (zero)`` is passed, the border attribute will not
be present in the `<table>` tag.
If ``False`` or ``0`` is passed, the border attribute will not
be present in the ``<table>`` tag.
The default value for this parameter is governed by
``pd.options.display.html.border``.
table_id : str, optional
Expand Down
5 changes: 2 additions & 3 deletions pandas/io/formats/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,9 +900,8 @@ def to_html(
border : int or bool
When an integer value is provided, it sets the border attribute in
the opening tag, specifying the thickness of the border.
If ``False or 0 (zero)`` is passed, the border attribute will not
be present in the `<table>`tag.
If ``False`` or ``0`` is passed, the border attribute will not
be present in the ``<table>`` tag.
The default value for this parameter is governed by
``pd.options.display.html.border``.
table_id : str, optional
Expand Down

0 comments on commit de4c096

Please sign in to comment.