diff --git a/docs/requests.md b/docs/requests.md index 024f8f57..796d8f09 100644 --- a/docs/requests.md +++ b/docs/requests.md @@ -233,7 +233,8 @@ Do note that `OptIn` annotation is not included in the returned list ```kotlin @AuthRequired(optional = true) @POST("comments") -suspend fun getCommentsById( +suspend fun postComment( + @Query("issue") issue: String, @Query("message") message: String, ): List ```