[ticket/15371] Correct grammar

PHPBB3-15371
This commit is contained in:
Rubén Calvo 2018-06-14 11:41:20 +02:00
parent aa75904ace
commit f0385fbda7

View file

@ -65,12 +65,12 @@ class local implements adapter_interface, stream_interface
/* /*
* Subdirectories depth * Subdirectories depth
* *
* Instead of storing all folders on the same directory, they can be divided * Instead of storing all folders in the same directory, they can be divided
* into smaller directories. This variable means the number of subdirectories of * into smaller directories. The variable describes the number of subdirectories
* depth to store the file. For example: * to be used for storing the files. For example:
* depth = 0 -> /images/avatars/upload/my_avatar.jpg * depth = 0 -> /images/avatars/upload/my_avatar.jpg
* depth = 2 -> /images/avatars/upload/d9/8c/my_avatar.jpg * depth = 2 -> /images/avatars/upload/d9/8c/my_avatar.jpg
* This is for those who have problems storing a large number of files on * This is for those who have problems storing a large number of files in
* a single directory. * a single directory.
* More info: https://tracker.phpbb.com/browse/PHPBB3-15371 * More info: https://tracker.phpbb.com/browse/PHPBB3-15371
* *