diff --git a/docs/cli-options.rst b/docs/cli-options.rst index 634910d..6893f31 100644 --- a/docs/cli-options.rst +++ b/docs/cli-options.rst @@ -92,7 +92,7 @@ matching the specified targets. .. option:: --count COUNT Do not attempt to download more than COUNT posts. Applies only to - ``#hashtag``, ``:feed-all`` and ``:feed-liked``. + ``#hashtag`` and ``:feed``. Login (Download Private Profiles) @@ -145,7 +145,7 @@ How to Download .. option:: --max-connection-attempts N Maximum number of connection attempts until a request is aborted. Defaults - to ``3``. If a connection fails, it can by manually skipped by hitting + to ``3``. If a connection fails, it can be manually skipped by hitting :kbd:`Control-c`. Set this to ``0`` to retry infinitely. Miscellaneous Options diff --git a/instaloader.py b/instaloader.py index c2139de..79c7420 100755 --- a/instaloader.py +++ b/instaloader.py @@ -1442,7 +1442,7 @@ def main(): 'flag is recommended when you use Instaloader to update your personal Instagram archive.') g_stop.add_argument('-c', '--count', help='Do not attempt to download more than COUNT posts. ' - 'Applies only to #hashtag, :feed-all and :feed-liked.') + 'Applies only to #hashtag and :feed.') g_login = parser.add_argument_group('Login (Download Private Profiles)', 'Instaloader can login to Instagram. This allows downloading private profiles. ' @@ -1475,7 +1475,7 @@ def main(): g_how.add_argument('-S', '--no-sleep', action='store_true', help=SUPPRESS) g_how.add_argument('--max-connection-attempts', metavar='N', type=int, default=3, help='Maximum number of connection attempts until a request is aborted. Defaults to 3. If a ' - 'connection fails, it can by manually skipped by hitting CTRL+C. Set this to 0 to retry ' + 'connection fails, it can be manually skipped by hitting CTRL+C. Set this to 0 to retry ' 'infinitely.') g_misc = parser.add_argument_group('Miscellaneous Options')