Skip to content

Commit 72e6979

Browse files
committed
Merge #21325: lint: Fix spelling errors in comments
fbbb2d4 lint: Fix spelling errors in comments (fyquah) Pull request description: Found some spelling errors while running spelling linter bitcoin/bitcoin#21245 This PR fixes them. ACKs for top commit: fanquake: ACK fbbb2d4 - I thought we just fixed all of these. Tree-SHA512: 95525040001f94e899b778c616cb66ebafb679dff88835b66fccf6349d8eb942d6b7374c536a44e393f13156bce9a32ed57e6a82bb02074d2b3cddb2696addb2
2 parents a28c053 + fbbb2d4 commit 72e6979

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contrib/guix/libexec/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export LC_ALL=C
33
set -e -o pipefail
44
export TZ=UTC
55

6-
# Althought Guix _does_ set umask when building its own packages (in our case,
6+
# Although Guix _does_ set umask when building its own packages (in our case,
77
# this is all packages in manifest.scm), it does not set it for `guix
88
# environment`. It does make sense for at least `guix environment --container`
99
# to set umask, so if that change gets merged upstream and we bump the

contrib/verifybinaries/verify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def download_with_wget(remote_file, local_file=None):
5151
if local_file:
5252
wget_args = ['wget', '-O', local_file, remote_file]
5353
else:
54-
# use timestamping mechanism if local filename is not explicitely set
54+
# use timestamping mechanism if local filename is not explicitly set
5555
wget_args = ['wget', '-N', remote_file]
5656

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

88-
# determine remote dir dependend on provided version string
88+
# determine remote dir dependent on provided version string
8989
version_base, version_rc, os_filter = parse_version_string(args[0])
9090
remote_dir = f"/bin/{VERSIONPREFIX}{version_base}/"
9191
if version_rc:

0 commit comments

Comments
 (0)