Skip to content

Commit 298c04b

Browse files
committed
docs
1 parent 7964459 commit 298c04b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Polyfill/Polyfill_Encoding.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Polyfills;
1313
static partial class Polyfill
1414
{
1515
#if !NETCOREAPP2_1_OR_GREATER
16-
/// <summary>When overridden in a derived class, encodes into a span of bytes a set of characters from the specified read-only span.</summary>
16+
/// <summary>Encodes into a span of bytes a set of characters from the specified read-only span.</summary>
1717
/// <param name="chars">The span containing the set of characters to encode.</param>
1818
/// <param name="bytes">The byte span to hold the encoded bytes.</param>
1919
/// <returns>The number of encoded bytes.</returns>

src/Polyfill/Polyfill_Encoding_GetByteCount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ static partial class Polyfill
1515
{
1616
#if NETCOREAPP2_0 || NETFRAMEWORK || NETSTANDARD2_0
1717
/// <summary>
18-
/// When overridden in a derived class, calculates the number of bytes produced by encoding the characters in the specified character span.
18+
/// Calculates the number of bytes produced by encoding the characters in the specified character span.
1919
/// </summary>
2020
/// <param name="encoding"></param>
2121
/// <param name="chars">The span of characters to encode.</param>

0 commit comments

Comments
 (0)