summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Constants.cs2
-rw-r--r--src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 6017a1d4..48428420 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -51,7 +51,7 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
- public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.2");
+ public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.3");
/// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1");
diff --git a/src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs b/src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs
index 1f7834ce..60bbd2c7 100644
--- a/src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs
+++ b/src/SMAPI/Framework/ModLoading/Framework/RewriteHelper.cs
@@ -79,7 +79,7 @@ namespace StardewModdingAPI.Framework.ModLoading.Framework
/// <summary>Get the long equivalent for a short-jump op code.</summary>
/// <param name="shortJumpCode">The short-jump op code.</param>
- /// <returns>Returns the instruction, or <c>null</c> if it isn't a short jump.</returns>
+ /// <returns>Returns the new op code, or <c>null</c> if it isn't a short jump.</returns>
public static OpCode? GetEquivalentLongJumpCode(OpCode shortJumpCode)
{
return shortJumpCode.Code switch