Adding clarification

This commit is contained in:
Noikoio 2018-02-27 12:32:12 -08:00
parent 8c0ae8fd44
commit 419370c379

View file

@ -25,6 +25,7 @@ namespace Noikoio.RegexBot
/// <summary> /// <summary>
/// Processes module-specific configuration. /// Processes module-specific configuration.
/// This method is not called if the user did not provide configuration for the module.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Module code <i>should not</i> hold on to this data, but instead use <see cref="GetConfig(ulong)"/> to retrieve /// Module code <i>should not</i> hold on to this data, but instead use <see cref="GetConfig(ulong)"/> to retrieve
@ -36,8 +37,8 @@ namespace Noikoio.RegexBot
/// Processed configuration data prepared for later use. /// Processed configuration data prepared for later use.
/// </returns> /// </returns>
/// <exception cref="ConfigItem.RuleImportException"> /// <exception cref="ConfigItem.RuleImportException">
/// This method should throw RuleImportException in the event of any error. /// This method should throw <see cref="ConfigItem.RuleImportException"/>
/// The exception message will be properly logged. /// in the event of configuration errors. The exception message will be properly displayed.
/// </exception> /// </exception>
public abstract Task<object> ProcessConfiguration(JToken configSection); public abstract Task<object> ProcessConfiguration(JToken configSection);