From 7658d0af16fabe04f74d3aecec45ea85f042730d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 4 Mar 2019 11:07:15 +0400 Subject: [PATCH] :memo: Clarify uploadfile async method calls --- docs/tutorial/request-files.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/request-files.md b/docs/tutorial/request-files.md index ee5c9b7d4..bc73dd25e 100644 --- a/docs/tutorial/request-files.md +++ b/docs/tutorial/request-files.md @@ -63,8 +63,8 @@ Using `UploadFile` has several advantages over `bytes`: * `write(data)`: Writes `data` (`str` or `bytes`) to the file. * `read(size)`: Reads `size` (`int`) bytes/characters of the file. * `seek(offset)`: Goes to the byte position `offset` (`int`) in the file. - * E.g., `myfile.seek(0)` would go to the start of the file. - * This is especially useful if you run `myfile.read()` once and then need to read the contents again. + * E.g., `await myfile.seek(0)` would go to the start of the file. + * This is especially useful if you run `await myfile.read()` once and then need to read the contents again. * `close()`: Closes the file. As all these methods are `async` methods, you need to "await" them.