From caa07a4e79f976adabcbeddf21e4d5697fe7f1d3 Mon Sep 17 00:00:00 2001 From: Fxplorer <154011238+Fxplorer@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:18:48 -0500 Subject: [PATCH] fix missing space Update CsvRuntime.fs --- src/FSharp.Data.Csv.Core/CsvRuntime.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSharp.Data.Csv.Core/CsvRuntime.fs b/src/FSharp.Data.Csv.Core/CsvRuntime.fs index 0cd96ce57..3ea3f89e3 100644 --- a/src/FSharp.Data.Csv.Core/CsvRuntime.fs +++ b/src/FSharp.Data.Csv.Core/CsvRuntime.fs @@ -521,7 +521,7 @@ type CsvFile<'RowType> /// Returns a new csv with only the first N rows of the underlying csv. member x.Take count = Seq.take count |> x.mapRows - /// Returns a csv that, when iterated, yields rowswhile the given predicate + /// Returns a csv that, when iterated, yields rows while the given predicate /// returns true, and then returns no further rows. member x.TakeWhile(predicate: Func<_, _>) = Seq.takeWhile predicate.Invoke |> x.mapRows