Skip to content

Commit c826f66

Browse files
committed
Merge branch 'main' into fsharp-core-6
2 parents de17072 + 6c998cc commit c826f66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"fsdocs-tool": {
6-
"version": "15.0.0",
6+
"version": "20.0.0-alpha-009",
77
"commands": [
88
"fsdocs"
99
]

docs/library/HtmlProvider.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The `Load` method allows reading the data from a file or web resource. We could
6666
The following sample calls the `Load` method with an URL that points to a live version of the same page on wikipedia.
6767
*)
6868
// Download the table for the 2017 F1 calendar from Wikipedia
69-
let f1Calendar = F1_2017.Load(F1_2017_URL).Tables.``Season calendarEdit``
69+
let f1Calendar = F1_2017.Load(F1_2017_URL).Tables.``Season calendaredit``
7070

7171
// Look at the top row, being the first race of the calendar
7272
let firstRow = f1Calendar.Rows |> Seq.head
@@ -146,7 +146,7 @@ let doctorWho = new HtmlProvider<DrWho>()
146146

147147
// Get the average number of viewers for each doctor's series run
148148
let viewersByDoctor =
149-
doctorWho.Tables.``Season 1 (1963-1964) Edit``.Rows
149+
doctorWho.Tables.``Season 1 (1963-1964) edit``.Rows
150150
|> Seq.groupBy (fun season -> season.``Directed by``)
151151
|> Seq.map (fun (doctor, seasons) ->
152152
let averaged =

0 commit comments

Comments
 (0)