@@ -115,7 +115,7 @@ public static RequestMatcher requestTo(URI uri) {
115
115
116
116
/**
117
117
* Assert request query parameter values with the given Hamcrest matcher(s).
118
- * <p> Note that if the queryParam value list is larger than the number of provided
118
+ * <p>Note that if the queryParam value list is larger than the number of provided
119
119
* {@code matchers}, extra values are considered acceptable.
120
120
* See {@link #queryParam(String, Matcher)} for a variant that takes a
121
121
* {@code Matcher} over the whole list of values.
@@ -134,7 +134,7 @@ public static RequestMatcher queryParam(String name, Matcher<? super String>...
134
134
135
135
/**
136
136
* Assert request query parameter values.
137
- * <p> Note that if the queryParam value list is larger than {@code expectedValues},
137
+ * <p>Note that if the queryParam value list is larger than {@code expectedValues},
138
138
* extra values are considered acceptable.
139
139
* See {@link #queryParam(String, Matcher)} for a variant that takes a
140
140
* {@code Matcher} over the whole list of values.
@@ -152,12 +152,12 @@ public static RequestMatcher queryParam(String name, String... expectedValues) {
152
152
153
153
/**
154
154
* Assert request query parameter, matching on the whole {@code List} of values.
155
- * <p> This can be used to check that the list has at least one value matching a
155
+ * <p>This can be used to check that the list has at least one value matching a
156
156
* criteria ({@link Matchers#hasItem(Matcher)}), or that every value in the list
157
157
* matches a common criteria ({@link Matchers#everyItem(Matcher)}), or that each
158
158
* value in the list matches its corresponding dedicated criteria
159
159
* ({@link Matchers#contains(Matcher[])}, and more.
160
- * @param name the name of the queryParam to consider
160
+ * @param name the name of the query parameter to consider
161
161
* @param matcher the matcher to apply to the whole list of values for that header
162
162
* @since 6.0.5
163
163
*/
@@ -192,7 +192,7 @@ private static void assertValueCount(
192
192
193
193
/**
194
194
* Assert request header values with the given Hamcrest matcher(s).
195
- * <p> Note that if the header's value list is larger than the number of provided
195
+ * <p>Note that if the header's value list is larger than the number of provided
196
196
* {@code matchers}, extra values are considered acceptable.
197
197
* See {@link #header(String, Matcher)} for a variant that takes a {@code Matcher}
198
198
* over the whole list of values.
@@ -212,7 +212,7 @@ public static RequestMatcher header(String name, Matcher<? super String>... matc
212
212
213
213
/**
214
214
* Assert request header values.
215
- * <p> Note that if the header's value list is larger than {@code expectedValues},
215
+ * <p>Note that if the header's value list is larger than {@code expectedValues},
216
216
* extra values are considered acceptable.
217
217
* See {@link #header(String, Matcher)} for a variant that takes a {@code Matcher}
218
218
* over the whole list of values.
@@ -231,12 +231,12 @@ public static RequestMatcher header(String name, String... expectedValues) {
231
231
232
232
/**
233
233
* Assert request header, matching on the whole {@code List} of values.
234
- * <p> This can be used to check that the list has at least one value matching a
234
+ * <p>This can be used to check that the list has at least one value matching a
235
235
* criteria ({@link Matchers#hasItem(Matcher)}), or that every value in the list
236
236
* matches a common criteria ({@link Matchers#everyItem(Matcher)}), or that each
237
237
* value in the list matches its corresponding dedicated criteria
238
238
* ({@link Matchers#contains(Matcher[])}, and more.
239
- * @param name the name of the header to consider
239
+ * @param name the name of the request header to consider
240
240
* @param matcher the matcher to apply to the whole list of values for that header
241
241
* @since 6.0.5
242
242
*/
0 commit comments