Skip to content

Commit 6ad47c8

Browse files
author
Sam Hanes
committed
Fix broken SqlClient ref in docs
1 parent 3355adf commit 6ad47c8

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

docs/content/bulk load.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "System.Transactions"
44
open FSharp.Data
55
open System

docs/content/configuration and Input.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "Microsoft.SqlServer.Types.dll"
44
(**
55

docs/content/data modification.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "System.Transactions"
44
open FSharp.Data
55
open System

docs/content/debugging.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "System.Transactions"
44
open FSharp.Data
55
open System

docs/content/faq.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "System.Transactions"
44
open FSharp.Data
55

docs/content/index.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
22
#r "Microsoft.SqlServer.Types.dll"
3-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
3+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
44

55
(**
66
Not your grandfather's ORM

docs/content/output.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "Microsoft.SqlServer.Types.dll"
44
open FSharp.Data
55
[<Literal>]

docs/content/setup.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#nowarn "211"
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "System.Transactions"
44

55
open FSharp.Data

docs/content/transactions.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r "System.Transactions"
44
open FSharp.Data
55

docs/content/unit-testing.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(*** hide ***)
2-
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
2+
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
33
#r @"..\..\packages\Test\xunit\lib\net20\xunit.dll"
44
#r "System.Transactions"
55
open FSharp.Data
@@ -87,7 +87,7 @@ module MyTests =
8787

8888
//unit test
8989
let ``best sales rep in Canada``() =
90-
let expected = Some( GetSalesChampion.Record("José", "Saraiva"))
90+
let expected = Some( GetSalesChampion.Record("José", "Saraiva"))
9191
assert (bestSalesRepInCanada mockRepository = expected)
9292

9393

0 commit comments

Comments
 (0)