Fix broken code snippet in dependency injection docs (#2420)

* Fixed markdown formatting to show code snippet

* Fixed constructor injection code snippet pointer
This commit is contained in:
Charlie U
2022-08-21 07:58:51 -04:00
committed by GitHub
parent 89a8ea161f
commit ddcf68a29f

View File

@@ -16,7 +16,7 @@ This can be done through property or constructor.
Services can be injected from the constructor of the class. Services can be injected from the constructor of the class.
This is the preferred approach, because it automatically locks the readonly field in place with the provided service and isn't accessible outside of the class. This is the preferred approach, because it automatically locks the readonly field in place with the provided service and isn't accessible outside of the class.
[!code-csharp[Property Injection(samples/property-injecting.cs)]] [!code-csharp[Constructor Injection](samples/ctor-injecting.cs)]
## Injecting through properties ## Injecting through properties