Skip to content

Commit

Permalink
Fix typo in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
iaruru committed Dec 13, 2023
1 parent 2306ac5 commit c863af4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Optional interface to be implemented by Spring managed bean willing
* to customize how Kafka listener endpoints are configured. Typically
* used to defined the default
* used to define the default
* {@link org.springframework.kafka.config.KafkaListenerContainerFactory
* KafkaListenerContainerFactory} to use or for registering Kafka endpoints
* in a <em>programmatic</em> fashion as opposed to the <em>declarative</em>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* {@code @Configuration} class that registers a {@link StreamsBuilderFactoryBean}
* if {@link org.apache.kafka.streams.StreamsConfig} with the name
* {@link KafkaStreamsDefaultConfiguration#DEFAULT_STREAMS_CONFIG_BEAN_NAME} is present
* in the application context. Otherwise a {@link UnsatisfiedDependencyException} is thrown.
* in the application context. Otherwise, a {@link UnsatisfiedDependencyException} is thrown.
*
* <p>This configuration class is automatically imported when using the @{@link EnableKafkaStreams}
* annotation. See {@link EnableKafkaStreams} Javadoc for complete usage.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* parsed as Integer). '*' indicates that the initial offset will be applied to all
* partitions in the encompassing {@link TopicPartition} The string can contain a
* comma-delimited list of partitions, or ranges of partitions (e.g.
* {@code 0-5, 7, 10-15}, in which case, the offset will be applied to all of those
* {@code 0-5, 7, 10-15}), in which case, the offset will be applied to all of those
* partitions.
* @return partition within the topic.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
/**
* The partitions within the topic. Partitions specified here can't be duplicated in
* {@link #partitionOffsets()}. Each string can contain a comma-delimited list of
* partitions, or ranges of partitions (e.g. {@code 0-5, 7, 10-15}.
* partitions, or ranges of partitions (e.g. {@code 0-5, 7, 10-15}).
* @return the partitions within the topic. Property place holders and SpEL
* expressions are supported, which must resolve to Integers (or Strings that can be
* parsed as Integers).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class AggregatingReplyingKafkaTemplate<K, V, R>
* @param replyContainer the reply container.
* @param releaseStrategy the release strategy which is a {@link BiPredicate} which is
* passed the current list and a boolean to indicate if this is for a normal delivery
* or a timeout (when {@link #setReturnPartialOnTimeout(boolean)} is true. The
* or a timeout (when {@link #setReturnPartialOnTimeout(boolean)} is true). The
* predicate may modify the list of records.
* @since 2.3.5
*/
Expand Down

0 comments on commit c863af4

Please sign in to comment.