Skip to content

Commit 979deb9

Browse files
authored
Merge pull request #230 from Joy-less/minor-doc-comment-clarity
Minor documentation clarifications
2 parents a02c43d + 1a9f175 commit 979deb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LinkDotNet.StringBuilder/ValueStringBuilder.Append.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public void Append(Rune value)
133133
}
134134

135135
/// <summary>
136-
/// Adds the default new line separator.
136+
/// Appends <see cref="Environment.NewLine"/>.
137137
/// </summary>
138138
[MethodImpl(MethodImplOptions.AggressiveInlining)]
139139
public void AppendLine()
@@ -142,7 +142,7 @@ public void AppendLine()
142142
}
143143

144144
/// <summary>
145-
/// Calls <see cref="Append(ReadOnlySpan{char})"/> and appends a newline.
145+
/// Calls <see cref="Append(ReadOnlySpan{char})"/> and appends <see cref="Environment.NewLine"/>.
146146
/// </summary>
147147
/// <param name="str">String to be added to this builder.</param>
148148
[MethodImpl(MethodImplOptions.AggressiveInlining)]

0 commit comments

Comments
 (0)