From 85ca089dde8814c4a42ad4574cddce25d60e5e25 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 11 Apr 2010 03:18:36 +0200 Subject: [PATCH] might -> must --- docs/quickstart.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index f1715498..49700fa7 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -217,7 +217,8 @@ very common: `POST` The browser tells the server that it wants to *post* some new information to that URL and that the server must ensure the data is - stored and only stored once. + stored and only stored once. This is how HTML forms are usually + transmitting data to the server. `PUT` Similar to `POST` but the server might trigger the store procedure @@ -226,7 +227,7 @@ very common: reasons to do that. Consider the connection is lost during transmission, in that situation a system between the browser and the server might sent the request safely a second time without breaking - things. With `POST` that would not be possible because it might only + things. With `POST` that would not be possible because it must only be triggered once. `DELETE`