From 838c5f155b8c61f75d17b64abb783d291f47d804 Mon Sep 17 00:00:00 2001 From: Tristan Nixon Date: Mon, 25 Oct 2021 23:51:57 -0700 Subject: [PATCH] Update namespace.py Fixed documentation of the escapechar parameter of read_csv function (docs incorrectly say this is for escaping the delimiter - it is for escaping a quotechar) --- databricks/koalas/namespace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databricks/koalas/namespace.py b/databricks/koalas/namespace.py index 5da1c0e734..0b2ce04ec5 100644 --- a/databricks/koalas/namespace.py +++ b/databricks/koalas/namespace.py @@ -249,7 +249,7 @@ def read_csv( The character used to denote the start and end of a quoted item. Quoted items can include the delimiter and it will be ignored. escapechar : str (length 1), default None - One-character string used to escape delimiter + One-character string used for escaping quotes inside an already quoted value. comment: str, optional Indicates the line should not be parsed. options : dict