From ad76790b8bea9837c77d19076687d65b519928ed Mon Sep 17 00:00:00 2001 From: mrchatam <287639636+mrchatam@users.noreply.github.com> Date: Fri, 11 Sep 2026 23:07:59 +0000 Subject: [PATCH] docs: fix 'allows to' grammar in ADR 0012 --- docs/decisions/0012-kernel-service-registration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/decisions/0012-kernel-service-registration.md b/docs/decisions/0012-kernel-service-registration.md index 2e69907bcc45..48847fe50918 100644 --- a/docs/decisions/0012-kernel-service-registration.md +++ b/docs/decisions/0012-kernel-service-registration.md @@ -23,7 +23,7 @@ public TextMemoryPlugin(ISemanticTextMemory memory) `TextMemoryPlugin` depends on `ISemanticTextMemory` interface. In similar way, other Plugins may have multiple dependencies and there should be a way how to resolve required dependencies manually or automatically. -At the moment, `ISemanticTextMemory` is a property of `IKernel` interface, which allows to inject `ISemanticTextMemory` into `TextMemoryPlugin` during Plugin initialization: +At the moment, `ISemanticTextMemory` is a property of `IKernel` interface, which allows you to inject `ISemanticTextMemory` into `TextMemoryPlugin` during Plugin initialization: ```csharp kernel.ImportFunctions(new TextMemoryPlugin(kernel.Memory));