From d1d4b06da6f80038e8e6c2647eb6d4c0fca8ccb0 Mon Sep 17 00:00:00 2001
From: Luciano Delucchi <579642+lucianodelucchi@users.noreply.github.com>
Date: Thu, 18 Aug 2022 14:15:52 +0200
Subject: [PATCH] chore: fix typos
---
.../MediatR.Examples.PublishStrategies/PublishStrategy.cs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/samples/MediatR.Examples.PublishStrategies/PublishStrategy.cs b/samples/MediatR.Examples.PublishStrategies/PublishStrategy.cs
index f985f76f..b0b1e4c8 100644
--- a/samples/MediatR.Examples.PublishStrategies/PublishStrategy.cs
+++ b/samples/MediatR.Examples.PublishStrategies/PublishStrategy.cs
@@ -21,17 +21,17 @@ public enum PublishStrategy
Async = 2,
///
- /// Run each notification handler on it's own thread using Task.Run(). Returns immediately and does not wait for any handlers to finish. Note that you cannot capture any exceptions, even if you await the call to Publish.
+ /// Run each notification handler on its own thread using Task.Run(). Returns immediately and does not wait for any handlers to finish. Note that you cannot capture any exceptions, even if you await the call to Publish.
///
ParallelNoWait = 3,
///
- /// Run each notification handler on it's own thread using Task.Run(). Returns when all threads (handlers) are finished. In case of any exception(s), they are captured in an AggregateException by Task.WhenAll.
+ /// Run each notification handler on its own thread using Task.Run(). Returns when all threads (handlers) are finished. In case of any exception(s), they are captured in an AggregateException by Task.WhenAll.
///
ParallelWhenAll = 4,
///
- /// Run each notification handler on it's own thread using Task.Run(). Returns when any thread (handler) is finished. Note that you cannot capture any exceptions (See msdn documentation of Task.WhenAny)
+ /// Run each notification handler on its own thread using Task.Run(). Returns when any thread (handler) is finished. Note that you cannot capture any exceptions (See msdn documentation of Task.WhenAny)
///
ParallelWhenAny = 5,
-}
\ No newline at end of file
+}