Fix comments

This commit is contained in:
Raymond 2021-07-15 21:28:13 -04:00
parent 57a87296cc
commit e524a18ead
2 changed files with 3 additions and 3 deletions

View file

@ -300,7 +300,7 @@ namespace Dalamud.Game.Text.SeStringHandling
EmphasisItalic = 0x1A, EmphasisItalic = 0x1A,
/// <summary> /// <summary>
/// See the <see cref="NewLinePayload"/> /// See the <see cref="NewLinePayload"/>.
/// </summary> /// </summary>
NewLine = 0x10, NewLine = 0x10,

View file

@ -1,4 +1,4 @@
using System; using System;
using System.IO; using System.IO;
namespace Dalamud.Game.Text.SeStringHandling.Payloads namespace Dalamud.Game.Text.SeStringHandling.Payloads
@ -16,7 +16,7 @@ namespace Dalamud.Game.Text.SeStringHandling.Payloads
public static NewLinePayload Payload => new(); public static NewLinePayload Payload => new();
/// <summary> /// <summary>
/// Gets the text of this payload, evaluates to <c>Environment.NewLine</c> /// Gets the text of this payload, evaluates to <c>Environment.NewLine</c>.
/// </summary> /// </summary>
public string Text => Environment.NewLine; public string Text => Environment.NewLine;