From bd6322d2a18d8e03630c24c8ac9f6fd87d8af17f Mon Sep 17 00:00:00 2001 From: danicheg Date: Sat, 27 May 2023 20:03:40 +0400 Subject: [PATCH] Fix QueryOps#setQueryParams scaladoc --- core/shared/src/main/scala/org/http4s/QueryOps.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/shared/src/main/scala/org/http4s/QueryOps.scala b/core/shared/src/main/scala/org/http4s/QueryOps.scala index f07c7c720f6..699e0f732ad 100644 --- a/core/shared/src/main/scala/org/http4s/QueryOps.scala +++ b/core/shared/src/main/scala/org/http4s/QueryOps.scala @@ -113,8 +113,8 @@ trait QueryOps { replaceQuery(newQuery) } - /** Creates maybe a new `Self` with the specified parameters. The entire - * [[Query]] will be replaced with the given one. + /** Creates maybe a new `Self` with the specified parameters. + * If any of the given parameters' keys already exists, the value(s) will be replaced. */ def setQueryParams[K: QueryParamKeyLike, T: QueryParamEncoder]( params: Map[K, collection.Seq[T]]