From c21e4d2d714413f8481d9a12879e7789bcf62054 Mon Sep 17 00:00:00 2001 From: A Lee Date: Wed, 10 Mar 2021 19:07:35 -0700 Subject: [PATCH] fix typo closes #507 --- _episodes/07-reading-tabular.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/07-reading-tabular.md b/_episodes/07-reading-tabular.md index 59e0950b5..c15cbc027 100644 --- a/_episodes/07-reading-tabular.md +++ b/_episodes/07-reading-tabular.md @@ -23,7 +23,7 @@ keypoints: * A 2-dimensional table whose columns have names and potentially have different data types. * Load it with `import pandas as pd`. The alias pd is commonly used for Pandas. -* Read a Comma Separate Values (CSV) data file with `pd.read_csv`. +* Read a Comma Separated Values (CSV) data file with `pd.read_csv`. * Argument is the name of the file to be read. * Assign result to a variable to store the data that was read.