From 918260e37b3da4f2eede8f9d6cd0c204691c7096 Mon Sep 17 00:00:00 2001 From: "Meaghan Osagie (Lewis)" Date: Fri, 5 Sep 2025 11:17:28 -0700 Subject: [PATCH] Fix typo in dependency-injection documentation --- docs/core/extensions/dependency-injection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/extensions/dependency-injection.md b/docs/core/extensions/dependency-injection.md index 62b3dee84cf4f..88e4007c9f6fb 100644 --- a/docs/core/extensions/dependency-injection.md +++ b/docs/core/extensions/dependency-injection.md @@ -81,7 +81,7 @@ The host contains the dependency injection service provider. It also contains al By using the DI pattern, the worker service: -- Doesn't use the concrete type `MessageWriter`, only the `IMessageWriter` interface that implements it. That makes it easy to change the implementation that the worker service uses without modifying the worker service. +- Doesn't use the concrete type `MessageWriter`, only the `IMessageWriter` interface that it implements. That makes it easy to change the implementation that the worker service uses without modifying the worker service. - Doesn't create an instance of `MessageWriter`. The instance is created by the DI container. The implementation of the `IMessageWriter` interface can be improved by using the built-in logging API: