Skip to content

Commit d5a9ceb

Browse files
committed
Apply tiny fixes to javadoc of HttpCommonTags
1 parent 6f9a47c commit d5a9ceb

File tree

1 file changed

+2
-3
lines changed
  • extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder

1 file changed

+2
-3
lines changed

extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/HttpCommonTags.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class HttpCommonTags {
1818
* Creates an {@code method} {@code Tag} derived from the given {@code HTTP method}.
1919
*
2020
* @param method the HTTP method
21-
* @return the outcome tag
21+
* @return the method tag
2222
*/
2323
public static Tag method(String method) {
2424
return method == null ? METHOD_UNKNOWN : Tag.of("method", method);
@@ -50,8 +50,7 @@ public static Tag outcome(int statusCode) {
5050
* for 404 responses, {@code root} for requests with no path info, and {@code UNKNOWN}
5151
* for all other requests.
5252
*
53-
*
54-
* @param pathInfo
53+
* @param pathInfo request path
5554
* @param code status code of the response
5655
* @return the uri tag derived from the request
5756
*/

0 commit comments

Comments
 (0)