From c8bbdd2b4a70eca8e9788142b0f18a0686114067 Mon Sep 17 00:00:00 2001 From: Dewan Tawsif Date: Wed, 8 Jan 2025 21:58:48 +0600 Subject: [PATCH] Tweak doc --- docs/requests.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ```