Skip to content

Commit 5c28b56

Browse files
committed
Remove duplicated words in Javadoc
1 parent d2b54e2 commit 5c28b56

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

spring-core/src/main/java/org/springframework/core/codec/StringDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* Decode from a data buffer stream to a {@code String} stream, either splitting
4646
* or aggregating incoming data chunks to realign along newlines delimiters
4747
* and produce a stream of strings. This is useful for streaming but is also
48-
* necessary to ensure that that multibyte characters can be decoded correctly,
48+
* necessary to ensure that multi-byte characters can be decoded correctly,
4949
* avoiding split-character issues. The default delimiters used by default are
5050
* {@code \n} and {@code \r\n} but that can be customized.
5151
*

spring-messaging/src/main/java/org/springframework/messaging/simp/broker/AbstractBrokerMessageHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public SubscribableChannel getBrokerChannel() {
130130
}
131131

132132
/**
133-
* Return destination prefixes prefixes to use to filter messages to forward
133+
* Return destination prefixes to use to filter messages to forward
134134
* to the broker. Messages that have a destination and where the destination
135135
* doesn't match are ignored.
136136
* <p>By default this is not set.

spring-r2dbc/src/main/java/org/springframework/r2dbc/core/NamedParameterExpander.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private ParsedSql getParsedSql(String sql) {
7474
* placeholders to be used for a select list. Select lists should be limited
7575
* to 100 or fewer elements. A larger number of elements is not guaranteed to be
7676
* supported by the database and is strictly vendor-dependent.
77-
* @param sql sql the original SQL statement
77+
* @param sql the original SQL statement
7878
* @param bindMarkersFactory the bind marker factory
7979
* @param paramSource the source for named parameters
8080
* @return the expanded sql that accepts bind parameters and allows for execution

spring-webmvc/src/main/java/org/springframework/web/servlet/tags/ParamAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public interface ParamAware {
2828
/**
2929
* Callback hook for nested spring:param tags to pass their value
3030
* to the parent tag.
31-
* @param param the result of the nested {@code spring:param} tag
31+
* @param the result of the nested {@code spring:param} tag
3232
*/
3333
void addParam(Param param);
3434

0 commit comments

Comments
 (0)