From 9cde07d38c4ba377f6d0f4c62d94c96c4ad9fec6 Mon Sep 17 00:00:00 2001 From: lynxknight <3482642+lynxknight@users.noreply.github.com> Date: Fri, 11 Dec 2020 20:13:26 +0300 Subject: [PATCH] fix random typo --- src/en/clean-copy/02-Section I. The API Design/05.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/en/clean-copy/02-Section I. The API Design/05.md b/src/en/clean-copy/02-Section I. The API Design/05.md index bd2f675..de1240e 100644 --- a/src/en/clean-copy/02-Section I. The API Design/05.md +++ b/src/en/clean-copy/02-Section I. The API Design/05.md @@ -251,7 +251,7 @@ PUT /v1/orders/drafts/{draft_id} Creating order drafts is a non-binding operation since it doesn't entail any consequences, so it's fine to create drafts without idempotency token. -Confirming drafts is a naturally idempotent operation, with `draft_if` being its idempotency key. +Confirming drafts is a naturally idempotent operation, with `draft_id` being its idempotency key. Also worth mentioning that adding idempotency tokens to naturally idempotent handlers isn't meaningless either, since it allows to distinguish two situations: * a client didn't get the response because of some network issues, and is now repeating the request;