Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #7247

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/NServiceBus.Core/Extensibility/ContextBag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public T Get<T>()
}

/// <summary>
/// Tries to retrieves the specified type from the context.
/// Tries to retrieve the specified type from the context.
/// </summary>
/// <typeparam name="T">The type to retrieve.</typeparam>
/// <param name="result">The type instance.</param>
Expand All @@ -41,7 +41,7 @@ public bool TryGet<T>(out T result)
}

/// <summary>
/// Tries to retrieves the specified type from the context.
/// Tries to retrieve the specified type from the context.
/// </summary>
/// <typeparam name="T">The type to retrieve.</typeparam>
/// <param name="key">The key of the value being looked up.</param>
Expand Down Expand Up @@ -184,4 +184,4 @@ Dictionary<string, object> GetOrCreateStash()
private protected ContextBag root;

Dictionary<string, object> stash; // might be null!
}
}
Loading