Skip to content

Commit 7e208ac

Browse files
authored
Merge pull request #4072 from skorphil/patch-1
Update part3a.md. Fixed typo, which confuses readers
2 parents 23e2c28 + c406868 commit 7e208ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/3/en/part3a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ All HTTP requests except POST should be <i>idempotent</i>:
851851

852852
> <i>Methods can also have the property of "idempotence" in that (aside from error or expiration issues) the side-effects of N > 0 identical requests is the same as for a single request. The methods GET, HEAD, PUT and DELETE share this property</i>
853853
854-
This means that if a request does not generate side effects, then the result should be the same regardless of how many times the request is sent.
854+
This means that if a request does generate side effects, then the result should be the same regardless of how many times the request is sent.
855855

856856
If we make an HTTP PUT request to the URL <i>/api/notes/10</i> and with the request we send the data <em>{ content: "no side effects!", important: true }</em>, the result is the same regardless of how many times the request is sent.
857857

0 commit comments

Comments
 (0)