From 4ef0ff2a241b3d639120e1cf08a6e77aca3c0149 Mon Sep 17 00:00:00 2001 From: myk002 Date: Mon, 22 Mar 2021 10:40:29 -0700 Subject: [PATCH] fix formatting errors --- docs/Lua API.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/Lua API.rst b/docs/Lua API.rst index 83eef2956..261737157 100644 --- a/docs/Lua API.rst +++ b/docs/Lua API.rst @@ -4307,13 +4307,13 @@ xlsxreader Utility functions to facilitate reading .xlsx spreadsheets. It provides the following low-level API methods: - - ``open_xlsx_file(filename)`` returns a file_handle - - ``close_xlsx_file(file_handle)`` - - ``list_sheets(file_handle)`` returns a list of strings representing sheet +- ``open_xlsx_file(filename)`` returns an open file_handle +- ``close_xlsx_file(file_handle)`` +- ``list_sheets(file_handle)`` returns a list of strings representing sheet names - - ``open_sheet(file_handle, sheet_name)`` returns a sheet_handle - - ``close_sheet(sheet_handle)`` - - ``get_row(sheet_handle, max_tokens)`` returns a list of strings representing +- ``open_sheet(file_handle, sheet_name)`` returns a sheet_handle +- ``close_sheet(sheet_handle)`` +- ``get_row(sheet_handle, max_tokens)`` returns a list of strings representing the contents of the cells in the next row. The ``max_tokens`` parameter is optional. If set to a number > 0, it limits the number of cells read and returned for the row.