]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:memo: Clarify uploadfile async method calls
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 4 Mar 2019 07:07:15 +0000 (11:07 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 4 Mar 2019 07:07:15 +0000 (11:07 +0400)
docs/tutorial/request-files.md

index ee5c9b7d4d127527dbdd7a8d4610b9c35870ffc8..bc73dd25e7d93f9539438d2d393aad2e88a8f5d1 100644 (file)
@@ -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.