Skip to content

Commit

Permalink
Minor doc fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Mar 1, 2023
1 parent 73ad510 commit 5e5cf9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dev/docs/source/chart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1092,11 +1092,11 @@ chart.show_blanks_as()

.. py:function:: show_blanks_as(option)
Set the option for displaying blank data in a chart.
Set the option for displaying blank/empty data cells in a chart.

:param string option: A string representing the display option.

The ``show_blanks_as()`` method controls how blank data is displayed in a
The ``show_blanks_as()`` method controls how blank/empty data is displayed in a
chart::

chart.show_blanks_as('span')
Expand Down
2 changes: 1 addition & 1 deletion xlsxwriter/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ def _process_names(self, name, name_formula):

if name is not None:
if isinstance(name, list):
# Convert an list of values into a name formula.
# Convert a list of values into a name formula.
cell = xl_rowcol_to_cell(name[1], name[2], True, True)
name_formula = quote_sheetname(name[0]) + '!' + cell
name = ''
Expand Down

0 comments on commit 5e5cf9b

Please sign in to comment.