fix docstring, missing bracket

This commit is contained in:
Raymond 2021-12-02 21:38:12 -05:00
parent b8441e5a87
commit 2d804e5159

View file

@ -163,7 +163,7 @@ namespace Dalamud.Plugin.Internal.Types
public string? IconUrl { get; init; } public string? IconUrl { get; init; }
/// <summary> /// <summary>
/// Gets a value that indicates whether or not this plugin accepts feedback. /// Gets a value indicating whether this plugin accepts feedback.
/// </summary> /// </summary>
public bool AcceptsFeedback { get; init; } = true; public bool AcceptsFeedback { get; init; } = true;
@ -176,4 +176,5 @@ namespace Dalamud.Plugin.Internal.Types
/// Gets a value indicating the webhook URL feedback is sent to. /// Gets a value indicating the webhook URL feedback is sent to.
/// </summary> /// </summary>
public string? FeedbackWebhook { get; init; } public string? FeedbackWebhook { get; init; }
}
} }