diff --git a/Fundamentals/Design/Stylesheets-Javascript/index.md b/Fundamentals/Design/Stylesheets-Javascript/index.md
index 0128141f8d6..2c965a6bb96 100644
--- a/Fundamentals/Design/Stylesheets-Javascript/index.md
+++ b/Fundamentals/Design/Stylesheets-Javascript/index.md
@@ -172,7 +172,7 @@ BundlingOptions.NotOptimizedAndComposite // The files will not be minified but w
:::note
The Smidge TagHelper does not consider the value of `Umbraco:CMS:Hosting:Debug` set in your appsettings file.
-If you do need to debug bundles you can inject `hostingSettings` and add the `debug` attribute as shown below
+If you do need to debug bundles you can inject `hostingSettings` and add the `debug` attribute as shown below.
:::
```csharp
@@ -183,6 +183,7 @@ If you do need to debug bundles you can inject `hostingSettings` and add the `de
var debugMode = hostingSettings.Value.Debug;
}
```
+
```csharp