From 712a975670fbfd59e5f80f059782359dac62000c Mon Sep 17 00:00:00 2001 From: Sean Feldman Date: Mon, 16 Dec 2024 17:56:50 -0700 Subject: [PATCH] Fix typos (#7247) --- src/NServiceBus.Core/Extensibility/ContextBag.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NServiceBus.Core/Extensibility/ContextBag.cs b/src/NServiceBus.Core/Extensibility/ContextBag.cs index 9fd92ac9ee9..c4e33f99d4f 100644 --- a/src/NServiceBus.Core/Extensibility/ContextBag.cs +++ b/src/NServiceBus.Core/Extensibility/ContextBag.cs @@ -30,7 +30,7 @@ public T Get() } /// - /// Tries to retrieves the specified type from the context. + /// Tries to retrieve the specified type from the context. /// /// The type to retrieve. /// The type instance. @@ -41,7 +41,7 @@ public bool TryGet(out T result) } /// - /// Tries to retrieves the specified type from the context. + /// Tries to retrieve the specified type from the context. /// /// The type to retrieve. /// The key of the value being looked up. @@ -184,4 +184,4 @@ Dictionary GetOrCreateStash() private protected ContextBag root; Dictionary stash; // might be null! -} \ No newline at end of file +}