From 601926e511f9262c75f974fb57ed82520b2d5b5a Mon Sep 17 00:00:00 2001 From: nhirschey Date: Tue, 29 Mar 2022 19:35:40 +0100 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 013217aa7..d58f2bf4e 100644 --- a/docs/library/CsvProvider.fsx +++ b/docs/library/CsvProvider.fsx @@ -168,7 +168,7 @@ meters per second against a value in kilometres per hour. By default, the CSV type provider uses comma (`,`) as a separator. However, CSV files sometime use a different separator character than `,`. In some European countries, `,` is already used as the numeric decimal separator, so a semicolon (`;`) is used -instead to separate CSV columns. The `CsvProvider` has an optional `Separator` static parameter +instead to separate CSV columns. The `CsvProvider` has an optional `Separators` static parameter where you can specify what to use as separator. This means that you can consume any textual tabular format. Here is an example using `;` as a separator: *)