Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix small typos in ConnectionFactory #1521

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/RabbitMQ.Client/client/api/ConnectionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ public AmqpTcpEndpoint Endpoint
public string Password { get; set; } = DefaultPass;

/// <summary>
/// CredemtialsProvider used to obtain username and pasword.
/// CredentialsProvider used to obtain username and password.
/// </summary>
public ICredentialsProvider CredentialsProvider { get; set; }

Expand Down Expand Up @@ -404,7 +404,7 @@ public IAuthMechanismFactory AuthMechanismFactory(IEnumerable<string> argServerM
}

/// <summary>
/// Asynchronously reate a connection to one of the endpoints provided by the IEndpointResolver
/// Asynchronously create a connection to one of the endpoints provided by the IEndpointResolver
/// returned by the EndpointResolverFactory. By default the configured
/// hostname and port are used.
/// </summary>
Expand Down
Loading