From 806d5b3c596e2e2a31d13318d4f683c42bc48440 Mon Sep 17 00:00:00 2001 From: Scott DePouw Date: Fri, 17 Nov 2023 06:45:00 -0500 Subject: [PATCH] Fix typo in FakeTimeProvider.SetUtcNow doc comment --- .../FakeTimeProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs b/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs index c408348842e..f6ef2a32fd1 100644 --- a/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs +++ b/src/Libraries/Microsoft.Extensions.TimeProvider.Testing/FakeTimeProvider.cs @@ -89,7 +89,7 @@ public override DateTimeOffset GetUtcNow() /// Sets the date and time in the UTC time zone. /// /// The date and time in the UTC time zone. - /// if the supplied time value is before the curent time. + /// if the supplied time value is before the current time. public void SetUtcNow(DateTimeOffset value) { lock (Waiters)