Skip to content

Commit c3aa782

Browse files
Update tutorials/nservicebus-sagas/2-timeouts/tutorial.md
Co-authored-by: Helen T <[email protected]>
1 parent 520c1ee commit c3aa782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/nservicebus-sagas/2-timeouts/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Besides the `context`, the `RequestTimeout` method has two interesting parameter
8181
> This tutorial uses 20 seconds as a timeout value for simplicity. In production, a business enforced rule should determine the length of this period.
8282
8383
> [!NOTE]
84-
> Instead of a `TimeSpan`, we could provide a `DateTime` instance, such as `DateTime.UtcNow.AddDays(10)`. When using this format, remember that local time is affected by Daylight Savings Time (DST) changes, so instead use UTC dates to avoid DST conversion issues.
84+
> Instead of a `TimeSpan`, we could provide a `DateTime` instance, such as `DateTime.UtcNow.AddDays(10)`. When using this format, remember that local time is affected by Daylight Savings Time (DST) changes, so use UTC dates instead to avoid DST conversion issues.
8585
8686
The other interesting parameter is the message that will be sent when the timeout elapses. In this case, we are providing an instance of `BuyersRemorseIsOver`, a class which is not yet defined. Let's define it now. You can put it in the same file as our saga and leave it as an empty class:
8787

0 commit comments

Comments
 (0)