Skip to content

Commit

Permalink
KTOR-1344 Remove path from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hfhbd authored and Philip Wedemann committed Mar 4, 2021
1 parent f8739a7 commit 0bac117
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public fun Route.post(path: String, body: PipelineInterceptor<Unit, ApplicationC
}

/**
* Builds a route to match `POST` requests with specified [path] receiving request body content of type [R]
* Builds a route to match `POST` requests receiving request body content of type [R]
*/
@ContextDsl
@JvmName("postTyped")
Expand Down Expand Up @@ -176,7 +176,7 @@ public fun Route.put(body: PipelineInterceptor<Unit, ApplicationCall>): Route {
}

/**
* Builds a route to match `PUT` requests with specified [path] receiving request body content of type [R]
* Builds a route to match `PUT` requests with receiving request body content of type [R]
*/
@ContextDsl
@JvmName("putTyped")
Expand Down Expand Up @@ -215,7 +215,7 @@ public fun Route.patch(body: PipelineInterceptor<Unit, ApplicationCall>): Route
}

/**
* Builds a route to match `PATCH` requests with specified [path] receiving request body content of type [R]
* Builds a route to match `PATCH` requests receiving request body content of type [R]
*/
@ContextDsl
@JvmName("patchTyped")
Expand Down

0 comments on commit 0bac117

Please sign in to comment.