Browse Source

Tweaked documentation to better reflect behavior

4.0.0-beta
Anairkoen Schno 4 years ago
parent
commit
d2fc23a5a2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      IPA.Loader/Loader/PluginManager.cs

+ 2
- 2
IPA.Loader/Loader/PluginManager.cs View File

@ -35,7 +35,7 @@ namespace IPA.Loader
internal static IEnumerable<PluginExecutor> BSMetas => _bsPlugins;
/// <summary>
/// Gets info about the plugin with the specified name.
/// Gets info about the enabled plugin with the specified name.
/// </summary>
/// <param name="name">the name of the plugin to get (must be an exact match)</param>
/// <returns>the plugin metadata for the requested plugin or <see langword="null"/> if it doesn't exist or is disabled</returns>
@ -43,7 +43,7 @@ namespace IPA.Loader
=> BSMetas.Select(p => p.Metadata).FirstOrDefault(p => p.Name == name);
/// <summary>
/// Gets info about the plugin with the specified ID.
/// Gets info about the enabled plugin with the specified ID.
/// </summary>
/// <param name="name">the ID name of the plugin to get (must be an exact match)</param>
/// <returns>the plugin metadata for the requested plugin or <see langword="null"/> if it doesn't exist or is disabled</returns>


Loading…
Cancel
Save