Skip to content

Commit

Permalink
Merge bitcoin#21325: lint: Fix spelling errors in comments
Browse files Browse the repository at this point in the history
fbbb2d4 lint: Fix spelling errors in comments (fyquah)

Pull request description:

  Found some spelling errors while running spelling linter  bitcoin#21245

  This PR fixes them.

ACKs for top commit:
  fanquake:
    ACK fbbb2d4 - I thought we just fixed all of these.

Tree-SHA512: 95525040001f94e899b778c616cb66ebafb679dff88835b66fccf6349d8eb942d6b7374c536a44e393f13156bce9a32ed57e6a82bb02074d2b3cddb2696addb2
  • Loading branch information
fanquake authored and knst committed Jan 18, 2024
1 parent fe7cb5b commit 13f1813
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/verifybinaries/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def download_with_wget(remote_file, local_file=None):
if local_file:
wget_args = ['wget', '-O', local_file, remote_file]
else:
# use timestamping mechanism if local filename is not explicitely set
# use timestamping mechanism if local filename is not explicitly set
wget_args = ['wget', '-N', remote_file]

result = subprocess.run(wget_args,
Expand Down Expand Up @@ -85,7 +85,7 @@ def main(args):
print("Error: need to specify a version on the command line")
return 3

# determine remote dir dependend on provided version string
# determine remote dir dependent on provided version string
version_base, version_rc, os_filter = parse_version_string(args[0])
remote_dir = f"{VERSIONPREFIX}{version_base}/"
if version_rc:
Expand Down

0 comments on commit 13f1813

Please sign in to comment.