Skip to content

Commit ea15965

Browse files
committed
Fix typos
Suggested-by: codespell, spellintian
1 parent bec41e0 commit ea15965

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ It will download the last version of every file present on Wayback Machine to `.
4242
-x, --exclude EXCLUDE_FILTER Skip downloading of urls that match this filter
4343
(use // notation for the filter to be treated as a regex)
4444
-a, --all Expand downloading to error files (40x and 50x) and redirections (30x)
45-
-c, --concurrency NUMBER Number of multiple files to dowload at a time
45+
-c, --concurrency NUMBER Number of multiple files to download at a time
4646
Default is one file at a time (ie. 20)
4747
-p, --maximum-snapshot NUMBER Maximum snapshot pages to consider (Default is 100)
4848
Count an average of 150,000 snapshots per page
@@ -62,7 +62,7 @@ Example:
6262

6363
-s, --all-timestamps
6464

65-
Optional. This option will download all timestamps/snapshots for a given website. It will uses the timepstamp of each snapshot as directory.
65+
Optional. This option will download all timestamps/snapshots for a given website. It will uses the timestamp of each snapshot as directory.
6666

6767
Example:
6868

@@ -89,7 +89,7 @@ Example:
8989

9090
-t, --to TIMESTAMP
9191

92-
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.
92+
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.
9393
Wayback Machine Downloader will then fetch only file versions on or before the timestamp specified.
9494

9595
Example:
@@ -169,7 +169,7 @@ Example:
169169

170170
-c, --concurrency NUMBER
171171

172-
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.
172+
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.
173173

174174
Example:
175175

bin/wayback_machine_downloader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ option_parser = OptionParser.new do |opts|
4646
options[:all] = true
4747
end
4848

49-
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|
49+
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|
5050
options[:threads_count] = t
5151
end
5252

lib/wayback_machine_downloader/tidy_bytes.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def tidy_bytes(force = false)
7070
if is_unused || is_restricted
7171
bytes[i] = tidy_byte(byte)
7272
elsif is_cont
73-
# Not expecting contination byte? Clean up. Otherwise, now expect one less.
73+
# Not expecting continuation byte? Clean up. Otherwise, now expect one less.
7474
conts_expected == 0 ? bytes[i] = tidy_byte(byte) : conts_expected -= 1
7575
else
7676
if conts_expected > 0

0 commit comments

Comments
 (0)