Skip to content

Commit a2732bb

Browse files
authored
Fix typo in dependency-injection documentation (#48277)
1 parent 831d376 commit a2732bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/core/extensions/dependency-injection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The host contains the dependency injection service provider. It also contains al
8181

8282
By using the DI pattern, the worker service:
8383

84-
- 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.
84+
- 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.
8585
- Doesn't create an instance of `MessageWriter`. The instance is created by the DI container.
8686

8787
The implementation of the `IMessageWriter` interface can be improved by using the built-in logging API:

0 commit comments

Comments
 (0)