Skip to content

Commit 16a4a9a

Browse files
committed
Polishing
1 parent ea9b1fc commit 16a4a9a

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

spring-web/src/main/java/org/springframework/web/service/annotation/DeleteExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP DELETE requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP DELETE requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

spring-web/src/main/java/org/springframework/web/service/annotation/GetExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP GET requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP GET requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

spring-web/src/main/java/org/springframework/web/service/annotation/HeadExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP HEAD requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP HEAD requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

spring-web/src/main/java/org/springframework/web/service/annotation/HttpExchange.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
* <p>The annotation may only be used at the type level &mdash; for example to
3333
* specify a base URL path. At the method level, use one of the HTTP method
3434
* specific, shortcut annotations, each of which is <em>meta-annotated</em> with
35-
* {@link HttpExchange}:
35+
* {@code HttpExchange}:
36+
*
3637
* <ul>
3738
* <li>{@link GetExchange}
3839
* <li>{@link PostExchange}

spring-web/src/main/java/org/springframework/web/service/annotation/OptionsExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP OPTIONS requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP OPTIONS requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

spring-web/src/main/java/org/springframework/web/service/annotation/PatchExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP PATCH requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP PATCH requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

spring-web/src/main/java/org/springframework/web/service/annotation/PostExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP POST requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP POST requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

spring-web/src/main/java/org/springframework/web/service/annotation/PutExchange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.core.annotation.AliasFor;
2626

2727
/**
28-
* Shortcut for {@link HttpExchange} for HTTP PUT requests.
28+
* Shortcut for {@link HttpExchange @HttpExchange} for HTTP PUT requests.
2929
*
3030
* @author Rossen Stoyanchev
3131
* @since 6.0

0 commit comments

Comments
 (0)