diff --git a/README.md b/README.md index 9f81da6..1bccbb9 100644 --- a/README.md +++ b/README.md @@ -1671,7 +1671,7 @@ from csv import reader, writer ### Read ```python = reader(, dialect='excel', delimiter=',') - = next() # Returns next row as list of strings. + = next() # Returns next row as a list of strings. ``` * **File must be opened with `'newline=""'` argument, or newlines embedded inside quoted fields will not be interpreted correctly!** diff --git a/index.html b/index.html index fcc2714..950ad3e 100644 --- a/index.html +++ b/index.html @@ -1502,7 +1502,7 @@ shutil.rmtree(<path>) # Deletes th

Read

<reader> = reader(<file>, dialect='excel', delimiter=',')
-<list>   = next(<reader>)           # Returns next row as list of strings.
+<list>   = next(<reader>)           # Returns next row as a list of strings.