Skip to content

Commit 02d82fe

Browse files
committed
Issue #19 examples restricted to column 69
1 parent f230819 commit 02d82fe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

draft-ietf-httpapi-idempotency-key-header.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ If the `Idempotency-Key` request header is missing for a documented idempotent o
149149
{
150150
"type": "https://developer.example.com/idempotency",
151151
"title": "Idempotency-Key is missing",
152-
"detail": "This operation is idempotent and it requires correct usage of
153-
Idempotency Key.",
152+
"detail": "This operation is idempotent and it requires correct
153+
usage of Idempotency Key.",
154154
}
155155

156156
Alternately, using the HTTP header `Link`, the client can be informed about the error as shown below.
@@ -168,9 +168,9 @@ If there is an attempt to reuse an idempotency key with a different request payl
168168
{
169169
"type": "https://developer.example.com/idempotency",
170170
"title": "Idempotency-Key is already used",
171-
"detail": "This operation is idempotent and it requires correct usage of
172-
Idempotency Key. Idempotency Key MUST not be reused across different
173-
payloads of this operation.",
171+
"detail": "This operation is idempotent and it requires
172+
correct usage of Idempotency Key. Idempotency Key MUST not be
173+
reused across different payloads of this operation.",
174174
}
175175

176176

@@ -189,8 +189,8 @@ If the request is retried, while the original request is still being processed,
189189
{
190190
"type": "https://developer.example.com/idempotency",
191191
"title": "A request is outstanding for this Idempotency-Key",
192-
"detail": "A request with the same Idempotency-Key for the same operation
193-
is being processed or is outstanding.",
192+
"detail": "A request with the same Idempotency-Key for the
193+
same operation is being processed or is outstanding.",
194194
}
195195

196196
Or, alternately using the HTTP header `Link` pointing to the relevant documentation
@@ -199,7 +199,7 @@ Or, alternately using the HTTP header `Link` pointing to the relevant documentat
199199
Link: <https://developer.example.com/idempotency>;
200200
rel="describedby"; type="text/html"
201201

202-
Error scenarios above describe the status of failed idempotent requests after the resource server prcocesses them. Clients MUST correct the requests (with the execption of 409 where no correction is required) before performing a retry operation, or the the resource server MUST fail the request and return one of the above errors.
202+
Error scenarios above describe the status of failed idempotent requests after the resource server prcocesses them. Clients MUST correct the requests (with the exception of 409 where no correction is required) before performing a retry operation, or the the resource server MUST fail the request and return one of the above errors.
203203

204204
For other 4xx/5xx errors, such as 401, 403, 500, 502, 503, 504, 429, or any other HTTP error code that is not listed here, the client SHOULD act appropriately by following the resource server's documentation.
205205

0 commit comments

Comments
 (0)