diff --git a/README.md b/README.md index 5d57f9a..f9277ba 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ It will download the last version of every file present on Wayback Machine to `. -x, --exclude EXCLUDE_FILTER Skip downloading of urls that match this filter (use // notation for the filter to be treated as a regex) -a, --all Expand downloading to error files (40x and 50x) and redirections (30x) - -c, --concurrency NUMBER Number of multiple files to dowload at a time + -c, --concurrency NUMBER Number of multiple files to download at a time Default is one file at a time (ie. 20) -p, --maximum-snapshot NUMBER Maximum snapshot pages to consider (Default is 100) Count an average of 150,000 snapshots per page @@ -62,7 +62,7 @@ Example: -s, --all-timestamps -Optional. This option will download all timestamps/snapshots for a given website. It will uses the timepstamp of each snapshot as directory. +Optional. This option will download all timestamps/snapshots for a given website. It will uses the timestamp of each snapshot as directory. Example: @@ -89,7 +89,7 @@ Example: -t, --to TIMESTAMP -Optional. You may want to supply a to timestamp to lock your backup to a specifc version of the website. Timestamps can be found inside the urls of the regular Wayback Machine website (e.g., https://web.archive.org/web/20100916231334/http://example.com). You can also use years (2010), years + month (201009), etc. It can be used in combination of From Timestamp. +Optional. You may want to supply a to timestamp to lock your backup to a specific version of the website. Timestamps can be found inside the urls of the regular Wayback Machine website (e.g., https://web.archive.org/web/20100916231334/http://example.com). You can also use years (2010), years + month (201009), etc. It can be used in combination of From Timestamp. Wayback Machine Downloader will then fetch only file versions on or before the timestamp specified. Example: @@ -169,7 +169,7 @@ Example: -c, --concurrency NUMBER -Optional. Specify the number of multiple files you want to download at the same time. Allows to speed up the download of a website significantly. Default is to download one file at a time. +Optional. Specify the number of multiple files you want to download at the same time. Allows one to speed up the download of a website significantly. Default is to download one file at a time. Example: diff --git a/bin/wayback_machine_downloader b/bin/wayback_machine_downloader index 8b9f2fd..4fb6d3d 100755 --- a/bin/wayback_machine_downloader +++ b/bin/wayback_machine_downloader @@ -46,7 +46,7 @@ option_parser = OptionParser.new do |opts| options[:all] = true end - opts.on("-c", "--concurrency NUMBER", Integer, "Number of multiple files to dowload at a time", "Default is one file at a time (ie. 20)") do |t| + opts.on("-c", "--concurrency NUMBER", Integer, "Number of multiple files to download at a time", "Default is one file at a time (ie. 20)") do |t| options[:threads_count] = t end diff --git a/lib/wayback_machine_downloader/tidy_bytes.rb b/lib/wayback_machine_downloader/tidy_bytes.rb index ba000b4..0d08431 100644 --- a/lib/wayback_machine_downloader/tidy_bytes.rb +++ b/lib/wayback_machine_downloader/tidy_bytes.rb @@ -70,7 +70,7 @@ module TibyBytes if is_unused || is_restricted bytes[i] = tidy_byte(byte) elsif is_cont - # Not expecting contination byte? Clean up. Otherwise, now expect one less. + # Not expecting continuation byte? Clean up. Otherwise, now expect one less. conts_expected == 0 ? bytes[i] = tidy_byte(byte) : conts_expected -= 1 else if conts_expected > 0