diff --git a/src/FSharp.Data.Csv.Core/CsvRuntime.fs b/src/FSharp.Data.Csv.Core/CsvRuntime.fs index c3ccbfd1..91a9b123 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