Skip to content

Commit

Permalink
Merge pull request #1500 from Fxplorer/patch-1
Browse files Browse the repository at this point in the history
fix missing space
  • Loading branch information
dsyme authored Jan 15, 2025
2 parents cf66169 + caa07a4 commit 0916517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FSharp.Data.Csv.Core/CsvRuntime.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <c>true</c>, and then returns no further rows.
member x.TakeWhile(predicate: Func<_, _>) =
Seq.takeWhile predicate.Invoke |> x.mapRows
Expand Down

0 comments on commit 0916517

Please sign in to comment.