Skip to content

Commit 7547af8

Browse files
committed
Fix out-of-date documentation of parameters
1 parent cb756cf commit 7547af8

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

01-intro.ipynb

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,10 @@
240240
"This [dotted notation](reference.html#dotted-notation) is used everywhere in Python\n",
241241
"to refer to the parts of things as `thing.component`.\n",
242242
"\n",
243-
"`pandas.read_table` has three [parameters](reference.html#parameter):\n",
244-
"the name of the file we want to read,\n",
245-
"the [delimiter](reference.html#delimiter) that separates values on a line, and where our header row is.\n",
246-
"The file name and delimiter need to be character strings (or [strings](reference.html#string) for short),\n",
247-
"so we put them in quotes. The location of the header row would be a number, but we don't have a header row so we use the value `None`\n",
243+
"`pandas.read_table` has two [parameters](reference.html#parameter):\n",
244+
"the name of the file we want to read and where our header row is.\n",
245+
"The file name needs to be a character string (or [string](reference.html#string) for short),\n",
246+
"so we put it in quotes. The location of the header row would be a number, but we don't have a header row so we use the value `None`\n",
248247
"\n",
249248
"When we are finished typing and press Shift+Enter,\n",
250249
"the notebook runs our command.\n",

0 commit comments

Comments
 (0)