From 5aa2211cba32ee959638106aebc10b523fb15312 Mon Sep 17 00:00:00 2001 From: Ksi Date: Mon, 20 May 2024 23:21:21 +0200 Subject: [PATCH] Fix comment --- src/Core/ProposedCode/MaturingItemManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/ProposedCode/MaturingItemManager.cs b/src/Core/ProposedCode/MaturingItemManager.cs index 72330fb..78ef847 100644 --- a/src/Core/ProposedCode/MaturingItemManager.cs +++ b/src/Core/ProposedCode/MaturingItemManager.cs @@ -32,7 +32,7 @@ public Item Mature(Item item) }; } - // Handle case where item type doesn't have a strategy + // Case where item type doesn't have a strategy return item; } }