From 5758ab5f7bce627ba796eec6d2ebbbff749f1f8c Mon Sep 17 00:00:00 2001 From: Jayesh Manani Date: Thu, 7 Jan 2021 18:29:00 +0530 Subject: [PATCH] Updated user-guide.rst Updated in Using gspread with NumPy hearder --> header (with correct spelling of header) --- docs/user-guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide.rst b/docs/user-guide.rst index 230495003..2da751876 100644 --- a/docs/user-guide.rst +++ b/docs/user-guide.rst @@ -324,7 +324,7 @@ Read contents of a sheet into a NumPy array: import numpy as np array = np.array(worksheet.get_all_values()) -The code above assumes that your data starts from the first row of the sheet. If you have a hearder row in the first row, you need replace ``worksheet.get_all_values()`` with ``worksheet.get_all_values()[1:]``. +The code above assumes that your data starts from the first row of the sheet. If you have a header row in the first row, you need replace ``worksheet.get_all_values()`` with ``worksheet.get_all_values()[1:]``. Write a NumPy array to a sheet: