Skip to content

Commit c9f709f

Browse files
committed
fix small documentation errors
1 parent 9ea94d2 commit c9f709f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/MySqlConnector/Core/ILoadBalancer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace MySqlConnector.Core
66
internal interface ILoadBalancer
77
{
88
/// <summary>
9-
/// Returns an <see cref="IEnumerable{string}"/> containing <paramref name="hosts"/> in the order they
9+
/// Returns an <see cref="IEnumerable{String}"/> containing <paramref name="hosts"/> in the order they
1010
/// should be tried to satisfy the load balancing policy.
1111
/// </summary>
1212
IEnumerable<string> LoadBalance(IReadOnlyList<string> hosts);

src/MySqlConnector/MySql.Data.MySqlClient/MySqlHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public sealed class MySqlHelper
99
public static void ClearConnectionPools() => MySqlConnection.ClearAllPools();
1010

1111
/// <summary>
12-
/// Escapes single and double quotes, and backslashes in <paramref name="input"/>.
12+
/// Escapes single and double quotes, and backslashes in <paramref name="value"/>.
1313
/// </summary>
1414
public static string EscapeString(string value)
1515
{

src/MySqlConnector/Protocol/Serialization/IByteHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal interface IByteHandler : IDisposable
1919
/// <returns>A <see cref="ValueTask{Int32}"/>. Number of bytes read.</returns>
2020
/// If reading failed, zero bytes will be returned. This
2121
/// <see cref="ArraySegment{Byte}"/> will be valid to read from until the next time <see cref="ReadBytesAsync"/> or
22-
/// <see cref="WriteBytesAsync"/> is called.</returns>
22+
/// <see cref="WriteBytesAsync"/> is called.
2323
ValueTask<int> ReadBytesAsync(ArraySegment<byte> buffer, IOBehavior ioBehavior);
2424

2525
/// <summary>

0 commit comments

Comments
 (0)