From f56242060695dd94d137bc17ebbdb295b507ec51 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Fri, 3 Dec 2021 10:18:24 +0545 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Christy Jacob --- docs/references/storage/create-file.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/references/storage/create-file.md b/docs/references/storage/create-file.md index 2d2059bfb5..c52a7c4e04 100644 --- a/docs/references/storage/create-file.md +++ b/docs/references/storage/create-file.md @@ -1,7 +1,7 @@ -Create a new file. The user who creates the file will automatically be assigned to read and write access unless they have passed custom values for read and write arguments. +Create a new file. The user that creates the file will automatically be granted read and write permissions unless they have passed custom values for read and write permissions. Larger files should be uploaded using multiple requests with the [content-range](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Range) header to send a partial request with a maximum supported chunk of `5MB`. The `content-range` header values should always be in bytes. -When the first request is sent, the server will return the **File** object, and the subsequent part request must include the file's **id** in `x-appwrite-upload-id` header to allow the server to know the partial upload is for the existing file and not for a new one. +When the first request is sent, the server will return the **File** object, and the subsequent part request must include the file's **id** in `x-appwrite-upload-id` header to allow the server to know that the partial upload is for the existing file and not for a new one. -If you're creating a new file using one of the Appwrite SDKs, the entire chunking logic will be managed by the SDK internally. +If you're creating a new file using one the Appwrite SDKs, all the chunking logic will be managed by the SDK internally.