Skip to content

Commit

Permalink
[docs] improve language & fix typo (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneier committed Sep 29, 2023
1 parent fe27c44 commit 2d1c94a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/backends/amazon-S3.rst
Expand Up @@ -34,7 +34,7 @@ On Django < 4.2 you'd instead define::
DEFAULT_FILE_STORAGE = "storages.backends.s3.S3Storage"

To put static files on S3 via ``collectstatic`` on Django >= 4.2 you'd include the ``staticfiles`` key (at the same level as
``default`` above inside of the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::
``default``) in the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::

STATICFILES_STORAGE = "storages.backends.s3.S3Storage"

Expand Down Expand Up @@ -176,7 +176,7 @@ Settings
Default: ``None``

Set this to customize the transfer config options such as disabling threads for ``gevent`` compatibility;
See the `Boto3 docs for TransferConfig` for more info.
See the `Boto3 docs for TransferConfig`_ for more info.


``custom_domain`` or ``AWS_S3_CUSTOM_DOMAIN``
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/azure.rst
Expand Up @@ -34,7 +34,7 @@ On Django < 4.2 you'd instead define::
DEFAULT_FILE_STORAGE = "storages.backends.azure_storage.AzureStorage"

To put static files on Azure via ``collectstatic`` on Django >= 4.2 you'd include the ``staticfiles`` key (at the same level as
``default`` above inside of the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::
``default``) in the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::

STATICFILES_STORAGE = "storages.backends.azure_storage.AzureStorage"

Expand Down
2 changes: 1 addition & 1 deletion docs/backends/dropbox.rst
Expand Up @@ -35,7 +35,7 @@ On Django < 4.2 you'd instead define::
DEFAULT_FILE_STORAGE = "storages.backends.dropbox.DropboxStorage"

To put static files on Dropbox via ``collectstatic`` on Django >= 4.2 you'd include the ``staticfiles`` key (at the same level as
``default`` above inside of the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::
``default``) in the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::

STATICFILES_STORAGE = "storages.backends.dropbox.DropboxStorage"

Expand Down
2 changes: 1 addition & 1 deletion docs/backends/gcloud.rst
Expand Up @@ -35,7 +35,7 @@ On Django < 4.2 you'd instead define::
DEFAULT_FILE_STORAGE = "storages.backends.gcloud.GoogleCloudStorage"

To put static files on GCS via ``collectstatic`` on Django >= 4.2 you'd include the ``staticfiles`` key (at the same level as
``default`` above inside of the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::
``default``) in the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::

STATICFILES_STORAGE = "storages.backends.gcloud.GoogleCloudStorage"

Expand Down
2 changes: 1 addition & 1 deletion docs/backends/sftp.rst
Expand Up @@ -31,7 +31,7 @@ On Django < 4.2 you'd instead define::
DEFAULT_FILE_STORAGE = "storages.backends.sftpstorage.SFTPStorage"

To put static files on SFTP via ``collectstatic`` on Django >= 4.2 you'd include the ``staticfiles`` key (at the same level as
``default`` above inside of the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::
``default``) in the ``STORAGES`` dictionary while on Django < 4.2 you'd instead define::

STATICFILES_STORAGE = "storages.backends.sftpstorage.SFTPStorage"

Expand Down

0 comments on commit 2d1c94a

Please sign in to comment.