diff options
| author | Simon Meers <simon@simonmeers.com> | 2013-06-24 13:59:03 +1000 |
|---|---|---|
| committer | Simon Meers <simon@simonmeers.com> | 2013-06-24 13:59:03 +1000 |
| commit | 6466a0837b741e72a7aa55b4e28e132a48b82d85 (patch) | |
| tree | 2b562b841d6732e3a0ca565900abebecfbfdf3cd | |
| parent | b0907d66a5ac7bdc5585cbebc56acf21274f2709 (diff) | |
Corrected minor typos in FileUploadHandler.receive_data_chunk docs.
| -rw-r--r-- | docs/topics/http/file-uploads.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index 54d748d961..f6fa27e27c 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -371,8 +371,8 @@ Custom file upload handlers **must** define the following methods: ``receive_data_chunk`` methods. In this way, one handler can be a "filter" for other handlers. - Return ``None`` from ``receive_data_chunk`` to sort-circuit remaining - upload handlers from getting this chunk.. This is useful if you're + Return ``None`` from ``receive_data_chunk`` to short-circuit remaining + upload handlers from getting this chunk. This is useful if you're storing the uploaded data yourself and don't want future handlers to store a copy of the data. |
