Skip to content

Commit 4d3dfa7

Browse files
committed
Merge branch '1.0.x'
2 parents 88813ff + c65c612 commit 4d3dfa7

37 files changed

+52
-52
lines changed

examples/AvroSpecific/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static async Task Main(string[] args)
7070
};
7171

7272
// Note: The User class in this project was generated using the Confluent fork of the avrogen.exe tool
73-
// (avaliable from: https://github.com/confluentinc/avro/tree/confluent-fork) which includes modifications
73+
// (available from: https://github.com/confluentinc/avro/tree/confluent-fork) which includes modifications
7474
// that prevent namespace clashes with user namespaces that include the identifier 'Avro'. AvroSerializer
7575
// and AvroDeserializer are also compatible with classes generated by the official avrogen.exe tool
7676
// (available from: https://github.com/apache/avro), with the above limitation.

examples/Consumer/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public static void Run_ManualAssign(string brokerList, List<string> topics, Canc
142142
BootstrapServers = brokerList,
143143
// partition offsets can be committed to a group even by consumers not
144144
// subscribed to the group. in this example, auto commit is disabled
145-
// to prevent this from occuring.
145+
// to prevent this from occurring.
146146
EnableAutoCommit = true
147147
};
148148

src/ConfigGen/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ internal class MappingConfiguration
1717
/// these property types are specified here.
1818
/// </summary>
1919
/// <remarks>
20-
/// sasl.mechanisms is an awkward case becasue the values contain '-' characters (and
20+
/// sasl.mechanisms is an awkward case because the values contain '-' characters (and
2121
/// there are other values that contain the '_' character, so can't 1:1 map with this).
2222
/// This type is defined by hand later.
2323
/// </remarks>

src/Confluent.Kafka/AdminClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private Task StartPollTask(CancellationToken ct)
145145
if (adminClientResult.GetType() != expectedType)
146146
{
147147
// Should never happen.
148-
throw new InvalidOperationException($"Completion source type mismatch. Exected {expectedType.Name}, got {type}");
148+
throw new InvalidOperationException($"Completion source type mismatch. Expected {expectedType.Name}, got {type}");
149149
}
150150

151151
var errorCode = Librdkafka.event_error(eventPtr);

src/Confluent.Kafka/Config_gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ public ProducerConfig() {}
801801
public int? CompressionLevel { get { return GetInt("compression.level"); } set { this.SetObject("compression.level", value); } }
802802

803803
/// <summary>
804-
/// When set to `true`, the producer will ensure that messages are successfully produced exactly once and in the original produce order. The following configuration properties are adjusted automatically (if not modified by the user) when idempotence is enabled: `max.in.flight.requests.per.connection=5` (must be less than or equal to 5), `retries=INT32_MAX` (must be greater than 0), `acks=all`, `queuing.strategy=fifo`. Producer instantation will fail if user-supplied configuration is incompatible.
804+
/// When set to `true`, the producer will ensure that messages are successfully produced exactly once and in the original produce order. The following configuration properties are adjusted automatically (if not modified by the user) when idempotence is enabled: `max.in.flight.requests.per.connection=5` (must be less than or equal to 5), `retries=INT32_MAX` (must be greater than 0), `acks=all`, `queuing.strategy=fifo`. Producer instantiation will fail if user-supplied configuration is incompatible.
805805
///
806806
/// default: false
807807
/// importance: high

src/Confluent.Kafka/ConsumeResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public TopicPartition TopicPartition
4646
=> new TopicPartition(Topic, Partition);
4747

4848
/// <summary>
49-
/// The TopicPartitionOffset assoicated with the message.
49+
/// The TopicPartitionOffset associated with the message.
5050
/// </summary>
5151
public TopicPartitionOffset TopicPartitionOffset
5252
{

src/Confluent.Kafka/ConsumerBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public ConsumerBuilder<TKey, TValue> SetValueDeserializer(IDeserializer<TValue>
221221
/// Note: corresponding to every call to this handler there will be a corresponding call to
222222
/// the partitions revoked handler (if one has been set using SetPartitionsRevokedHandler).
223223
///
224-
/// The actual partitions to consume from and start offsets are specfied by the return value
224+
/// The actual partitions to consume from and start offsets are specified by the return value
225225
/// of the handler. This set of partitions is not required to match the assignment provided
226226
/// by the consumer group, but typically will. Partition offsets may be a specific offset, or
227227
/// special value (Beginning, End or Unset). If Unset, consumption will resume from the

src/Confluent.Kafka/DeliveryReport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class DeliveryReport<TKey, TValue> : DeliveryResult<TKey, TValue>
2828
public Error Error { get; set; }
2929

3030
/// <summary>
31-
/// The TopicPartitionOffsetError assoicated with the message.
31+
/// The TopicPartitionOffsetError associated with the message.
3232
/// </summary>
3333
public TopicPartitionOffsetError TopicPartitionOffsetError
3434
{

src/Confluent.Kafka/DeliveryResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public TopicPartition TopicPartition
4444
=> new TopicPartition(Topic, Partition);
4545

4646
/// <summary>
47-
/// The TopicPartitionOffset assoicated with the message.
47+
/// The TopicPartitionOffset associated with the message.
4848
/// </summary>
4949
public TopicPartitionOffset TopicPartitionOffset
5050
{

src/Confluent.Kafka/ErrorCode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ public enum ErrorCode
475475
IllegalSaslState = 34,
476476

477477
/// <summary>
478-
/// Unusupported version
478+
/// Unsupported version
479479
/// </summary>
480480
UnsupportedVersion = 35,
481481

@@ -520,7 +520,7 @@ public enum ErrorCode
520520
UnsupportedForMessageFormat = 43,
521521

522522
/// <summary>
523-
/// Isolation policy volation
523+
/// Isolation policy violation
524524
/// </summary>
525525
PolicyViolation = 44,
526526

0 commit comments

Comments
 (0)