Fix typos

Suggested-by: codespell, spellintian
This commit is contained in:
Paul Wise 2021-05-03 20:20:09 +08:00
parent bec41e09ea
commit ea15965d6d
No known key found for this signature in database
GPG Key ID: 3116BA5E9FFA69A3
3 changed files with 6 additions and 6 deletions

View File

@ -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 -x, --exclude EXCLUDE_FILTER Skip downloading of urls that match this filter
(use // notation for the filter to be treated as a regex) (use // notation for the filter to be treated as a regex)
-a, --all Expand downloading to error files (40x and 50x) and redirections (30x) -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) Default is one file at a time (ie. 20)
-p, --maximum-snapshot NUMBER Maximum snapshot pages to consider (Default is 100) -p, --maximum-snapshot NUMBER Maximum snapshot pages to consider (Default is 100)
Count an average of 150,000 snapshots per page Count an average of 150,000 snapshots per page
@ -62,7 +62,7 @@ Example:
-s, --all-timestamps -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: Example:
@ -89,7 +89,7 @@ Example:
-t, --to TIMESTAMP -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. Wayback Machine Downloader will then fetch only file versions on or before the timestamp specified.
Example: Example:
@ -169,7 +169,7 @@ Example:
-c, --concurrency NUMBER -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: Example:

View File

@ -46,7 +46,7 @@ option_parser = OptionParser.new do |opts|
options[:all] = true options[:all] = true
end 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 options[:threads_count] = t
end end

View File

@ -70,7 +70,7 @@ module TibyBytes
if is_unused || is_restricted if is_unused || is_restricted
bytes[i] = tidy_byte(byte) bytes[i] = tidy_byte(byte)
elsif is_cont 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 conts_expected == 0 ? bytes[i] = tidy_byte(byte) : conts_expected -= 1
else else
if conts_expected > 0 if conts_expected > 0