Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo 'Comsmos' to 'Cosmos' #37588

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sdk/tables/Azure.Data.Tables/MigrationGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ var serviceClient = new TableServiceClient(

### Creating a table

Previously in `Microsoft.Azure.Comsmos.Table`, we'd use a `CloudTable` instance to create a table, which is returned from the `CloudTableClient` method on
Previously in `Microsoft.Azure.Cosmos.Table`, we'd use a `CloudTable` instance to create a table, which is returned from the `CloudTableClient` method on
`CloudTableClient`.

```C#
Expand Down Expand Up @@ -155,7 +155,7 @@ var entity = new OfficeSupplyEntity
};
```

Previously in `Microsoft.Azure.Comsmos.Table`, we would create a `TableOperation` and execute it with the table client.
Previously in `Microsoft.Azure.Cosmos.Table`, we would create a `TableOperation` and execute it with the table client.
The result of the operation must be casted back to the entity type.

```c#
Expand All @@ -181,7 +181,7 @@ tableClient.UpsertEntity(tableEntity);

Both clients allow for fetching a single entity from the table if the `PartitionKey` and `RowKey` are known.

Previously in `Microsoft.Azure.Comsmos.Table`, we created an operation and then executed it, similar to when we added the item to the cloudTable.
Previously in `Microsoft.Azure.Cosmos.Table`, we created an operation and then executed it, similar to when we added the item to the cloudTable.

```c#
// Create the operation.
Expand Down Expand Up @@ -209,7 +209,7 @@ Console.WriteLine($"{marker.PartitionKey}, {marker.RowKey}, {marker.Product}, {m

### Querying data from the table

Previously in `Microsoft.Azure.Comsmos.Table`, creating an executing a query looked as follows.
Previously in `Microsoft.Azure.Cosmos.Table`, creating an executing a query looked as follows.

```c#
// Create the query.
Expand Down