File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace MySqlConnector.Core
6
6
internal interface ILoadBalancer
7
7
{
8
8
/// <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
10
10
/// should be tried to satisfy the load balancing policy.
11
11
/// </summary>
12
12
IEnumerable < string > LoadBalance ( IReadOnlyList < string > hosts ) ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public sealed class MySqlHelper
9
9
public static void ClearConnectionPools ( ) => MySqlConnection . ClearAllPools ( ) ;
10
10
11
11
/// <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 "/>.
13
13
/// </summary>
14
14
public static string EscapeString ( string value )
15
15
{
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ internal interface IByteHandler : IDisposable
19
19
/// <returns>A <see cref="ValueTask{Int32}"/>. Number of bytes read.</returns>
20
20
/// If reading failed, zero bytes will be returned. This
21
21
/// <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.
23
23
ValueTask < int > ReadBytesAsync ( ArraySegment < byte > buffer , IOBehavior ioBehavior ) ;
24
24
25
25
/// <summary>
You can’t perform that action at this time.
0 commit comments