diff --git a/docs/database/ef-core-migrations.md b/docs/database/ef-core-migrations.md index 871ee579e2..42116f3806 100644 --- a/docs/database/ef-core-migrations.md +++ b/docs/database/ef-core-migrations.md @@ -23,7 +23,7 @@ git clone https://github.com/MicrosoftDocs/mslearn-aspire-starter The sample app is in the *SupportTicketApi* folder. Open the solution in Visual Studio or VS Code and take a moment to review the sample app and make sure it runs before proceeding. The sample app is a rudimentary support ticket API, and it contains the following projects: -- **SupporTicketApi.Api**: The ASP.NET Core project that hosts the API. +- **SupportTicketApi.Api**: The ASP.NET Core project that hosts the API. - **SupportTicketApi.Data**: Contains the EF Core contexts and models. - **SupportTicketApi.AppHost**: Contains the .NET Aspire app host and configuration. - **SupportTicketApi.ServiceDefaults**: Contains the default service configurations. diff --git a/docs/messaging/messaging-components.md b/docs/messaging/messaging-components.md index ee048e9f18..f73c04f703 100644 --- a/docs/messaging/messaging-components.md +++ b/docs/messaging/messaging-components.md @@ -231,7 +231,7 @@ Add the [.NET Aspire Azure Service Bus](azure-service-bus-component.md) componen dotnet add package Aspire.Azure.Messaging.ServiceBus ``` -In the _:::no-loc text="Program.cs":::_ file of the `AspireMessaging.WorkerService` Razor Pages project, add a call to the `AddAzureServiceBus` extension methods: +In the _:::no-loc text="Program.cs":::_ file of the `AspireMessaging.WorkerService` Worker Service project, add a call to the `AddAzureServiceBus` extension methods: ```csharp builder.AddAzureServiceBusClient("serviceBusConnection");