Skip to content

Commit

Permalink
style: fix wrong indent at Refund.kt (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
aripiprazole authored Jul 21, 2023
1 parent f922498 commit 4dfc93a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/Refund.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public suspend fun WooviSDK.allRefunds(): RefundListResponse {
public suspend fun WooviSDK.createRefund(
value: RefundBuilder = RefundBuilder(),
builder: RefundBuilder.() -> Unit,
): RefundResponse {
): RefundResponse {
return client
.post("/api/v1/refund") { setBody(value.apply(builder).build()) }
.body<RefundResponse>()
Expand Down

0 comments on commit 4dfc93a

Please sign in to comment.