Skip to content

Commit d3d8316

Browse files
committed
Fix java doc issue
1 parent 0b5a853 commit d3d8316

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http/http/src/main/java/io/helidon/http/HeaderValues.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ public static Header create(String name, Collection<String> values) {
353353
* Create a new header. This header is considered unchanging and not sensitive.
354354
*
355355
* @param name name of the header
356-
* @param values Iterable<String> type values of the header, must contain at least one value (which may be an empty String)
356+
* @param values Iterable&lt;String&gt; type values of the header, must contain at least one value (which may be an empty String)
357357
* @return a new header
358358
* @see #create(io.helidon.http.HeaderName, boolean, boolean, String...)
359359
* @throws java.lang.IllegalArgumentException in case the collection is empty
@@ -370,7 +370,7 @@ public static Header create(HeaderName name, Iterable<String> values) {
370370
* Create a new header. This header is considered unchanging and not sensitive.
371371
*
372372
* @param name name of the header
373-
* @param values Iterable<String> type values of the header, must contain at least one value (which may be an empty String)
373+
* @param values Iterable&lt;String&gt; type values of the header, must contain at least one value (which may be an empty String)
374374
* @return a new header
375375
* @see #create(io.helidon.http.HeaderName, boolean, boolean, String...)
376376
* @throws java.lang.IllegalArgumentException in case the collection is empty

0 commit comments

Comments
 (0)