Skip to content

Fix typos in Javadoc #2894

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

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Exception to be thrown by message converters if they encounter a problem with converting a message or object.
* </p>
* <p>
* N.B. this is <em>not</em> an {@link AmqpException} because it is a a client exception, not a protocol or broker
* N.B. this is <em>not</em> an {@link AmqpException} because it is a client exception, not a protocol or broker
* problem.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
* <p>Annotated methods can use flexible signature; in particular, it is possible to use
* the {@link org.springframework.messaging.Message Message} abstraction and related annotations,
* see {@link RabbitListener} Javadoc for more details. For instance, the following would
* inject the content of the message and a a custom "myCounter" AMQP header:
* inject the content of the message and a custom "myCounter" AMQP header:
*
* <pre class="code">
* &#064;RabbitListener(containerFactory = "myRabbitListenerContainerFactory", queues = "myQueue")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ public void setupListenerContainer(MessageListenerContainer listenerContainer) {
* Create a {@link MessageListener} that is able to serve this endpoint for the
* specified container.
* @param container the {@link MessageListenerContainer} to create a {@link MessageListener}.
* @return a a {@link MessageListener} instance.
* @return a {@link MessageListener} instance.
*/
protected abstract MessageListener createMessageListener(MessageListenerContainer container);

Expand Down