Skip to content

Commit b4c8dd2

Browse files
committed
Fix comments in IConnectionConfigurationValues
1 parent ad1f09a commit b4c8dd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Elasticsearch.Net/Configuration/IConnectionConfigurationValues.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ public interface IConnectionConfigurationValues : IDisposable
1818
/// Basic access authorization credentials to specify with all requests.
1919
/// </summary>
2020
/// <remarks>
21-
/// Cannot be used in conjuction with <see cref="ApiKeyAuthenticationCredentials"/>
21+
/// Cannot be used in conjunction with <see cref="ApiKeyAuthenticationCredentials"/>
2222
/// </remarks>
2323
BasicAuthenticationCredentials BasicAuthenticationCredentials { get; }
2424

2525
/// <summary>
2626
/// Api Key authorization credentials to specify with all requests.
2727
/// </summary>
2828
/// <remarks>
29-
/// Cannot be used in conjuction with <see cref="BasicAuthenticationCredentials"/>
29+
/// Cannot be used in conjunction with <see cref="BasicAuthenticationCredentials"/>
3030
/// </remarks>
3131
ApiKeyAuthenticationCredentials ApiKeyAuthenticationCredentials { get; }
3232

33-
/// <summary> Provides a semaphoreslim to transport implementations that need to limit access to a resource</summary>
33+
/// <summary> Provides a <see cref="SemaphoreSlim"/> to transport implementations that need to limit access to a resource</summary>
3434
SemaphoreSlim BootstrapLock { get; }
3535

3636
/// <summary>

0 commit comments

Comments
 (0)