diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-07-17 00:28:30 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-07-17 00:28:30 -0400 |
commit | 37f867683b55b863893f7f8529248a772b137a2e (patch) | |
tree | 50a1d80d8f02d9ceea824184105fb7efb09e1a34 /src | |
parent | 90c52c73afcfdc7fff63aa74e23fc10b3b379c5d (diff) | |
download | SMAPI-37f867683b55b863893f7f8529248a772b137a2e.tar.gz SMAPI-37f867683b55b863893f7f8529248a772b137a2e.tar.bz2 SMAPI-37f867683b55b863893f7f8529248a772b137a2e.zip |
fix XML docs
Diffstat (limited to 'src')
-rw-r--r-- | src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs b/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs index 6c07d374..7375f005 100644 --- a/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs +++ b/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs @@ -26,7 +26,7 @@ namespace StardewModdingAPI /// <summary>The unique mod ID.</summary> string UniqueID { get; } - /// <summary>The name of the DLL in the directory that has the <see cref="IMod.Entry"/> method. Mutually exclusive with <see cref="EntryDll"/>.</summary> + /// <summary>The name of the DLL in the directory that has the <c>Entry</c> method. Mutually exclusive with <see cref="ContentPackFor"/>.</summary> string EntryDll { get; } /// <summary>The mod which will read this as a content pack. Mutually exclusive with <see cref="EntryDll"/>.</summary> |