From 80f0625a0892586c196f282047b411b6dce44612 Mon Sep 17 00:00:00 2001 From: Klaus Klein Date: Mon, 16 May 2022 07:38:29 +0200 Subject: [PATCH] Typo fix, the parameter is plural ("Separators"). --- docs/library/CsvProvider.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/library/CsvProvider.fsx b/docs/library/CsvProvider.fsx index d58f2bf4e..059fff799 100644 --- a/docs/library/CsvProvider.fsx +++ b/docs/library/CsvProvider.fsx @@ -215,7 +215,7 @@ for r in mortalityNy.Rows do Finally, note that it is also possible to specify multiple different separators for the `CsvProvider`. This might be useful if a file is irregular and contains rows separated by either semicolon or a colon. You can use: -`CsvProvider<"../data/AirQuality.csv", Separator=";,", ResolutionFolder=ResolutionFolder>`. +`CsvProvider<"../data/AirQuality.csv", Separators=";,", ResolutionFolder=ResolutionFolder>`. ## Missing values