summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/StardewModdingAPI/Mod.cs6
-rw-r--r--src/TrainerMod/TrainerMod.cs2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/StardewModdingAPI/Mod.cs b/src/StardewModdingAPI/Mod.cs
index 23002c1f..05122df5 100644
--- a/src/StardewModdingAPI/Mod.cs
+++ b/src/StardewModdingAPI/Mod.cs
@@ -69,16 +69,16 @@ namespace StardewModdingAPI
/*********
** Public methods
*********/
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
[Obsolete("This overload is obsolete since SMAPI 1.0.")]
public virtual void Entry(params object[] objects) { }
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
/// <param name="helper">Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files.</param>
[Obsolete("This overload is obsolete since SMAPI 1.1.")]
public virtual void Entry(ModHelper helper) { }
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
/// <param name="helper">Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files.</param>
public virtual void Entry(IModHelper helper) { }
diff --git a/src/TrainerMod/TrainerMod.cs b/src/TrainerMod/TrainerMod.cs
index 2409e6b4..dda72564 100644
--- a/src/TrainerMod/TrainerMod.cs
+++ b/src/TrainerMod/TrainerMod.cs
@@ -38,7 +38,7 @@ namespace TrainerMod
/*********
** Public methods
*********/
- /// <summary>The entry point for your mod. It will always be called once when the mod loads.</summary>
+ /// <summary>The mod entry point, called after the mod is first loaded.</summary>
/// <param name="helper">Provides methods for interacting with the mod directory, such as read/writing a config file or custom JSON files.</param>
public override void Entry(IModHelper helper)
{