Skip to content

Commit 2cc1ee7

Browse files
committed
Polishing
1 parent 1f1f222 commit 2cc1ee7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/ast/InlineMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public InlineMap(int startPos, int endPos, SpelNodeImpl... args) {
5151

5252
/**
5353
* If all the components of the map are constants, or lists/maps that themselves
54-
* contain constants, then a constant list can be built to represent this node.
54+
* contain constants, then a constant map can be built to represent this node.
5555
* <p>This will speed up later getValue calls and reduce the amount of garbage
5656
* created.
5757
*/

spring-expression/src/main/java/org/springframework/expression/spel/ast/OpMinus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* <ul>
3434
* <li>subtraction of numbers
3535
* <li>subtraction of an int from a string of one character
36-
* (effectively decreasing that character), so 'd'-3='a'
36+
* (effectively decreasing that character), so {@code 'd' - 3 = 'a'}
3737
* </ul>
3838
*
3939
* <p>It can be used as a unary operator for numbers.

spring-websocket/src/main/java/org/springframework/web/socket/server/jetty/JettyRequestUpgradeStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public List<WebSocketExtension> getSupportedExtensions(ServerHttpRequest request
7272
/**
7373
* Add a callback to configure WebSocket server parameters on
7474
* {@link JettyWebSocketServerContainer}.
75-
* @since 6.1.0
75+
* @since 6.1
7676
*/
7777
public void addWebSocketConfigurer(Consumer<Configurable> webSocketConfigurer) {
7878
this.webSocketConfigurer = (this.webSocketConfigurer != null ?

0 commit comments

Comments
 (0)