summaryrefslogtreecommitdiff
path: root/src/SMAPI/IMod.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-09 13:50:24 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-09 13:50:24 -0400
commita220e14f2d22f5d481c87bfd76d1b9eeaebf04e3 (patch)
tree1712532d196a908b07ce0bceb17849792a14c562 /src/SMAPI/IMod.cs
parentfce1b1bd0b6d3d27990d8e27cbba001766bf2aad (diff)
downloadSMAPI-a220e14f2d22f5d481c87bfd76d1b9eeaebf04e3.tar.gz
SMAPI-a220e14f2d22f5d481c87bfd76d1b9eeaebf04e3.tar.bz2
SMAPI-a220e14f2d22f5d481c87bfd76d1b9eeaebf04e3.zip
polish recent changes & update release notes
Diffstat (limited to 'src/SMAPI/IMod.cs')
-rw-r--r--src/SMAPI/IMod.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/IMod.cs b/src/SMAPI/IMod.cs
index 19d01311..87c9880c 100644
--- a/src/SMAPI/IMod.cs
+++ b/src/SMAPI/IMod.cs
@@ -30,7 +30,7 @@ namespace StardewModdingAPI
/// <summary>Get an <a href="https://stardewvalleywiki.com/Modding:Modder_Guide/APIs/Integrations">API that other mods can access</a>. This is always called after <see cref="Entry"/>, and is called once per mod that accesses the API (even if they access it multiple times).</summary>
/// <param name="mod">The mod accessing the API.</param>
- /// <remarks>Returns the API instance, or <c>null</c> if the mod has no API. Note that the manifest is provided for informational purposes only, and that denying API access to specific mods is strongly discouraged and may be considered abusive.</remarks>
+ /// <remarks>Returns the API instance, or <c>null</c> if the mod has no API. Note that <paramref name="mod"/> is provided for informational purposes only, and that denying API access to specific mods is strongly discouraged and may be considered abusive.</remarks>
/// <inheritdoc cref="GetApi()" include="/Remarks" />
object? GetApi(IModInfo mod);
}