Clarify documentation for media upload methods
authorHarmon <Harmon758@gmail.com>
Sun, 21 Feb 2021 04:16:34 +0000 (22:16 -0600)
committerHarmon <Harmon758@gmail.com>
Sun, 21 Feb 2021 04:17:06 +0000 (22:17 -0600)
So as to refer to uploading media rather than only images

docs/api.rst

index 103e76f2518bb9ea0b0e9105c1b4a2b3dab2859f..4dd8ef3b6182008e68d471ca0e20eca5cc27b86e 100644 (file)
@@ -1321,7 +1321,7 @@ Media methods
 .. method:: API.media_upload(filename, [file], [chunked], [media_category], \
                              [additional_owners])
 
-   Use this to upload images to Twitter.
+   Use this to upload media to Twitter.
    This automatically uses the chunked upload endpoints for videos.
    This calls either :func:`API.simple_upload` or :func:`API.chunked_upload`.
 
@@ -1339,7 +1339,7 @@ Media methods
 .. method:: API.simple_upload(filename, [file], [media_category], \
                               [additional_owners])
 
-   Use this endpoint to upload images to Twitter.
+   Use this endpoint to upload media to Twitter.
    This does not use the chunked upload endpoints.
 
    :param filename: |filename|
@@ -1353,7 +1353,7 @@ Media methods
 .. method:: API.chunked_upload(filename, [file], [file_type], \
                                [media_category], [additional_owners])
 
-   Use this to upload images to Twitter.
+   Use this to upload media to Twitter.
    This uses the chunked upload endpoints and calls
    :func:`API.chunked_upload_init`, :func:`API.chunked_upload_append`, and
    :func:`API.chunked_upload_finalize`.