Skip to content

Commit

Permalink
Update quickstart.fsx
Browse files Browse the repository at this point in the history
Documentation currently refers to "AzureStorageProvider.fsx" but from looking at the Nuget package files, I think the file referenced should be "StorageTypeProvider.fsx"
  • Loading branch information
ajwillshire committed Apr 15, 2019
1 parent 93cdc87 commit b971eb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/quickstart.fsx
Expand Up @@ -20,7 +20,7 @@ Connecting to Azure
Connecting to your storage account is simple.
From within a script, first ``#load "AzureStorageProvider.fsx"`` to reference all dependencies.
From within a script, first ``#load "StorageTypeProvider.fsx"`` to reference all dependencies.
Then, you can generate a type for a storage account simply by providing your Azure
account credentials via a number of ways.
Expand Down Expand Up @@ -97,4 +97,4 @@ data migration scenarios.
let liveBlob = Local.Containers.samples.``file1.txt``.AsCloudBlockBlob("myOtherConnectionString")

// Get row 1A from the "employee" table using a different connection string.
let row1A = Local.Tables.employee.Get(Row "1", Partition "A", "myOtherConnectionString")
let row1A = Local.Tables.employee.Get(Row "1", Partition "A", "myOtherConnectionString")

0 comments on commit b971eb5

Please sign in to comment.