Skip to content

Commit

Permalink
Fix typos (#7247)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanFeldman authored and danielmarbach committed Jan 9, 2025
1 parent b58125a commit fa0c755
Showing 1 changed file with 3 additions and 3 deletions.
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!
}
}

0 comments on commit fa0c755

Please sign in to comment.