From c9f6d1bf34a61e5e840b27009a860aef0c07f49f Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Thu, 18 Nov 2021 04:43:35 -0600 Subject: [PATCH] Fix code language (#23972) --- aspnetcore/blazor/fundamentals/logging.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/blazor/fundamentals/logging.md b/aspnetcore/blazor/fundamentals/logging.md index 6f61c392fb..2a7ced5599 100644 --- a/aspnetcore/blazor/fundamentals/logging.md +++ b/aspnetcore/blazor/fundamentals/logging.md @@ -49,7 +49,7 @@ Inject an to add a `WebAssem Add the namespace for and inject an into the component: -```csharp +```razor @using Microsoft.Extensions.Logging @inject ILoggerProvider LoggerProvider ``` @@ -129,7 +129,7 @@ Inject an to add a `WebAssem Add the namespace for and inject an into the component: -```csharp +```razor @using Microsoft.Extensions.Logging @inject ILoggerProvider LoggerProvider ``` @@ -209,7 +209,7 @@ Inject an to add a `WebAssem Add the namespace for and inject an into the component: -```csharp +```razor @using Microsoft.Extensions.Logging @inject ILoggerProvider LoggerProvider ```