From c6c28c6e3f8eff1652a2027673907235105ba37d Mon Sep 17 00:00:00 2001
From: MidoriKami <9083275+MidoriKami@users.noreply.github.com>
Date: Fri, 22 Sep 2023 21:12:44 -0700
Subject: [PATCH] Change default name so auto generate stops complaining about
improper casing.
---
Dalamud/Plugin/Services/IAddonLifecycle.cs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dalamud/Plugin/Services/IAddonLifecycle.cs b/Dalamud/Plugin/Services/IAddonLifecycle.cs
index e89c57931..2bc41a366 100644
--- a/Dalamud/Plugin/Services/IAddonLifecycle.cs
+++ b/Dalamud/Plugin/Services/IAddonLifecycle.cs
@@ -13,9 +13,9 @@ public interface IAddonLifecycle
///
/// Delegate for receiving addon lifecycle event messages.
///
- /// The event type that triggered the message.
+ /// The event type that triggered the message.
/// Information about what addon triggered the message.
- public delegate void AddonEventDelegate(AddonEvent eventType, AddonArgs args);
+ public delegate void AddonEventDelegate(AddonEvent type, AddonArgs args);
///
/// Register a listener that will trigger on the specified event and any of the specified addons.