From 4d576fb6528cf0f17c90768e9c8d5c47cffff464 Mon Sep 17 00:00:00 2001
From: mfluehr <radick334@yahoo.com>
Date: Mon, 16 Aug 2021 12:47:25 -0400
Subject: [PATCH] Fix typo in method summary (#35385)

---
 src/Components/Components/src/NavigationManager.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Components/Components/src/NavigationManager.cs b/src/Components/Components/src/NavigationManager.cs
index 0936eb92e91..b19c26c269d 100644
--- a/src/Components/Components/src/NavigationManager.cs
+++ b/src/Components/Components/src/NavigationManager.cs
@@ -99,7 +99,7 @@ namespace Microsoft.AspNetCore.Components
         /// <param name="uri">The destination URI. This can be absolute, or relative to the base URI
         /// (as returned by <see cref="BaseUri"/>).</param>
         /// <param name="forceLoad">If true, bypasses client-side routing and forces the browser to load the new page from the server, whether or not the URI would normally be handled by the client-side router.</param>
-        /// <param name="replace">If true, replaces the currently entry in the history stack. If false, appends the new entry to the history stack.</param>
+        /// <param name="replace">If true, replaces the current entry in the history stack. If false, appends the new entry to the history stack.</param>
         public void NavigateTo(string uri, bool forceLoad = false, bool replace = false)
         {
             AssertInitialized();
-- 
GitLab