Skip to content

Commit 003620f

Browse files
Merge pull request #1080 from sungam3r/typo
Typos
2 parents d31e243 + 6cda118 commit 003620f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

projects/RabbitMQ.Client/client/api/IConnectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public static void Abort(this IConnection connection, ushort reasonCode, string
120120
/// </summary>
121121
/// <remarks>
122122
/// This method, behaves in a similar way as method <see cref="Abort(IConnection)"/> with the
123-
/// only difference that it explictly specifies a timeout given
123+
/// only difference that it explicitly specifies a timeout given
124124
/// for all the in-progress close operations to complete.
125125
/// If timeout is reached and the close operations haven't finished, then socket is forced to close.
126126
/// <para>

projects/RabbitMQ.Client/client/api/ITcpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace RabbitMQ.Client
88
/// <summary>
99
/// Wrapper interface for standard TCP-client. Provides socket for socket frame handler class.
1010
/// </summary>
11-
/// <remarks>Contains all methods that are currenty in use in rabbitmq client.</remarks>
11+
/// <remarks>Contains all methods that are currently in use in rabbitmq client.</remarks>
1212
public interface ITcpClient : IDisposable
1313
{
1414
bool Connected { get; }

projects/RabbitMQ.Client/client/api/ShutdownReportEntry.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace RabbitMQ.Client
3535
{
3636
/// <summary>
3737
/// Single entry object in the shutdown report that encapsulates description
38-
/// of the error which occured during shutdown.
38+
/// of the error which occurred during shutdown.
3939
/// </summary>
4040
public class ShutdownReportEntry
4141
{
@@ -51,7 +51,7 @@ public ShutdownReportEntry(string description, Exception exception)
5151
public string Description { get; set; }
5252

5353
/// <summary>
54-
/// <see cref="Exception"/> object that occured during shutdown, or null if unspecified.
54+
/// <see cref="Exception"/> object that occurred during shutdown, or null if unspecified.
5555
/// </summary>
5656
public Exception Exception { get; set; }
5757

projects/RabbitMQ.Client/client/events/AsyncEventingBasicConsumer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ public event AsyncEventHandler<ShutdownEventArgs> Shutdown
4242
}
4343
private AsyncEventingWrapper<ShutdownEventArgs> _shutdownWrapper;
4444

45-
///<summary>Fires when the server confirms successful consumer cancelation.</summary>
45+
///<summary>Fires when the server confirms successful consumer cancellation.</summary>
4646
public event AsyncEventHandler<ConsumerEventArgs> Unregistered
4747
{
4848
add => _unregisteredWrapper.AddHandler(value);
4949
remove => _unregisteredWrapper.RemoveHandler(value);
5050
}
5151
private AsyncEventingWrapper<ConsumerEventArgs> _unregisteredWrapper;
5252

53-
///<summary>Fires when the server confirms successful consumer cancelation.</summary>
53+
///<summary>Fires when the server confirms successful consumer cancellation.</summary>
5454
public override async Task HandleBasicCancelOk(string consumerTag)
5555
{
5656
await base.HandleBasicCancelOk(consumerTag).ConfigureAwait(false);

projects/RabbitMQ.Client/client/events/BasicAckEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class BasicAckEventArgs : EventArgs
4242
///is true.</summary>
4343
public ulong DeliveryTag { get; set; }
4444

45-
///<summary>Whether this acknoledgement applies to one message
45+
///<summary>Whether this acknowledgement applies to one message
4646
///or multiple messages.</summary>
4747
public bool Multiple { get; set; }
4848
}

projects/RabbitMQ.Client/client/events/EventingBasicConsumer.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ public EventingBasicConsumer(IModel model) : base(model)
5959
///<summary>Fires on model (channel) shutdown, both client and server initiated.</summary>
6060
public event EventHandler<ShutdownEventArgs> Shutdown;
6161

62-
///<summary>Fires when the server confirms successful consumer cancelation.</summary>
62+
///<summary>Fires when the server confirms successful consumer cancellation.</summary>
6363
public event EventHandler<ConsumerEventArgs> Unregistered;
6464

65-
///<summary>Fires when the server confirms successful consumer cancelation.</summary>
65+
///<summary>Fires when the server confirms successful consumer cancellation.</summary>
6666
public override void HandleBasicCancelOk(string consumerTag)
6767
{
6868
base.HandleBasicCancelOk(consumerTag);
6969
Unregistered?.Invoke(this, new ConsumerEventArgs(new[] { consumerTag }));
7070
}
7171

72-
///<summary>Fires when the server confirms successful consumer cancelation.</summary>
72+
///<summary>Fires when the server confirms successful consumer cancellation.</summary>
7373
public override void HandleBasicConsumeOk(string consumerTag)
7474
{
7575
base.HandleBasicConsumeOk(consumerTag);

0 commit comments

Comments
 (0)