From e6596f0f84b7307669722d60518148cf2f0a1a9a Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 21:52:02 -0700 Subject: [PATCH] LoadingStatus: fix 'occured' -> 'occurred' in inline comment Inline comment in src/NuGet.Clients/NuGet.VisualStudio.Internal.Contracts/LoadingStatus.cs line 10 read 'error occured'. Fixed to 'occurred'. Comment-only change. Signed-off-by: SAY-5 --- .../NuGet.VisualStudio.Internal.Contracts/LoadingStatus.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NuGet.Clients/NuGet.VisualStudio.Internal.Contracts/LoadingStatus.cs b/src/NuGet.Clients/NuGet.VisualStudio.Internal.Contracts/LoadingStatus.cs index d310374e16b..68229d73476 100644 --- a/src/NuGet.Clients/NuGet.VisualStudio.Internal.Contracts/LoadingStatus.cs +++ b/src/NuGet.Clients/NuGet.VisualStudio.Internal.Contracts/LoadingStatus.cs @@ -7,7 +7,7 @@ public enum LoadingStatus { Unknown, // not initialized Cancelled, // loading cancelled - ErrorOccurred, // error occured + ErrorOccurred, // error occurred Loading, // loading is running in background NoItemsFound, // loading complete, no items found NoMoreItems, // loading complete, no more items discovered beyond current page