Skip to content

Commit

Permalink
Correct typos
Browse files Browse the repository at this point in the history
(cherry picked from commit ed6e5bf)
  • Loading branch information
taylorwood authored and Gustavo Guerra committed Jun 15, 2014
1 parent 0316b3c commit 8655151
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/library/CsvProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ airQuality.Filter(fun row -> not (Double.IsNaN row.Ozone) &&
## Handling big datasets
By default, the rows are cached so you can iterate over the `Rows` property multiple times without worrying.
But if you will only iterate once, you can disable caching by settting the `CacheRows` static parameter of `CsvProvider`
But if you will only iterate once, you can disable caching by setting the `CacheRows` static parameter of `CsvProvider`
to `false` . If the number of rows is very big, you have to do this otherwise you may exhaust the memory.
You can still cache the data at some point by using the `Cache` method, but only do that if you have already
transformed the dataset to be smaller:
Expand Down
2 changes: 1 addition & 1 deletion tests/FSharp.Data.Tests/JsonValue.fs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ let ``Can parse array of numbers``() =
j.[2] |> should equal (JsonValue.Number 3m)

[<Test>]
let ``Quotes in strings are property escaped``() =
let ``Quotes in strings are properly escaped``() =
let jsonStr = "{\"short_description\":\"This a string with \\\"quotes\\\"\"}"
let j = JsonValue.Parse jsonStr
j.ToString(JsonSaveOptions.DisableFormatting) |> should equal jsonStr
Expand Down

0 comments on commit 8655151

Please sign in to comment.