Skip to content

Commit af00358

Browse files
committed
readme: patch wording
1 parent 6eb8247 commit af00358

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Uploading a large file in chunks can help reduce risks.
1616

1717
- PHP from 5.3.4 limits the number of concurrent uploads and by uploading a file in one request can limit the
1818
availability of a service. ([max_file_uploads][php-max-file-uploads])
19-
- For security reasons the payload size and the uploadable file size is limited in many systems PHP is not an exception.
19+
- For security reasons many systems limit the payload size, and the uploadable file size. PHP is not an exception.
2020
([upload_max_filesize][php-upload-max-filesize])
21-
- It can be useful to check the meta information of a file and decline an upload upfront so the user does not have to
22-
wait for minutes or seconds to upload a large file and then receive a message that the file type or mime type is not
23-
allowed.
21+
- It can be useful to check the meta information of a file and decline an upload upfront, so the user does not have to
22+
wait for minutes or seconds to upload a large file and then receive an error message for an invalid the file type
23+
or mime type.
2424
- Can include resume functionality which means an upload can be continued after a reconnection.
2525

2626
However, there is not a single RFC about chunked uploads and this caused many implementations. The most mature

0 commit comments

Comments
 (0)