From a54408d8f8fe121fcf6a7305ac8d741805267da6 Mon Sep 17 00:00:00 2001 From: Mads Kristensen Date: Mon, 12 Jan 2026 10:39:17 -0800 Subject: [PATCH] Update instructions/vsixtoolkit.instructions.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- instructions/vsixtoolkit.instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions/vsixtoolkit.instructions.md b/instructions/vsixtoolkit.instructions.md index c445b242..1ede16d8 100644 --- a/instructions/vsixtoolkit.instructions.md +++ b/instructions/vsixtoolkit.instructions.md @@ -382,7 +382,7 @@ VS.Events.DocumentEvents.Saved += OnDocumentSaved; // Read settings synchronously var value = General.Instance.MyOption; -// Read settings asynchronously +// Read settings asynchronously var general = await General.GetLiveInstanceAsync(); var value = general.MyOption;