diff options
| author | Simon Meers <simon@simonmeers.com> | 2013-06-24 13:59:03 +1000 |
|---|---|---|
| committer | Simon Meers <simon@simonmeers.com> | 2013-06-24 14:11:08 +1000 |
| commit | 11a8a7f2660cd864b56061e32d74304b80da11ba (patch) | |
| tree | 08ccc5e2f3b920767cc4f90658012e7176de7913 | |
| parent | 4821a99ca437496bbe660b5f16a61014816752fb (diff) | |
[1.5.x] Corrected minor typos in FileUploadHandler.receive_data_chunk docs.
Backport of 6466a08 from master.
| -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 80bd5f3c44..457c2aa915 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -369,8 +369,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. |
