From 6234efed5d202007c582a17f979f3910fa31b808 Mon Sep 17 00:00:00 2001
From: Noah Surprenant <38679581+NoahSurprenant@users.noreply.github.com>
Date: Mon, 13 May 2024 14:28:13 -0400
Subject: [PATCH] Fix the typo (#100384)
---
.../Microsoft.Extensions.Options/src/IOptionsFactory.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs b/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs
index e5951613828816..1504a6566a34a8 100644
--- a/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs
+++ b/src/libraries/Microsoft.Extensions.Options/src/IOptionsFactory.cs
@@ -17,7 +17,7 @@ public interface IOptionsFactory<[DynamicallyAccessedMembers(Options.Dynamically
/// Returns a configured instance with the given .
///
/// The name of the instance to create.
- /// The created instance with thw given .
+ /// The created instance with the given .
TOptions Create(string name);
}
}