Skip to content

Commit 480f426

Browse files
author
MarcoFalke
committed
Merge #12543: Fix typos
d918eb7 Fix typos (practicalswift) Pull request description: Fix typos. Tree-SHA512: c790e49be6e01c8d70ebd872ef61cc210c1de15c4a1e5a98280169f32dc8a14cd68f4dd1c23afc76758b28ef355ab12ded2ff7504562dc9b69a11839ad3cd7e3
2 parents 6012f1c + d918eb7 commit 480f426

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/build-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To install WSL on Windows 10 with Fall Creators Update installed (version >= 162
3535

3636
1. Enable the Windows Subsystem for Linux feature
3737
* Open the Windows Features dialog (`OptionalFeatures.exe`)
38-
* Enable 'Windows Susbsystem for Linux'
38+
* Enable 'Windows Subsystem for Linux'
3939
* Click 'OK' and restart if necessary
4040
2. Install Ubuntu
4141
* Open Microsoft Store and search for Ubuntu or use [this link](https://www.microsoft.com/store/productId/9NBLGGH4MSV6)

src/test/util_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ BOOST_AUTO_TEST_CASE(test_LockDirectory)
754754
thr.join();
755755
BOOST_CHECK_EQUAL(threadresult, true);
756756
#ifndef WIN32
757-
// Try to aquire lock in child process while we're holding it, this should fail.
757+
// Try to acquire lock in child process while we're holding it, this should fail.
758758
char ch;
759759
BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
760760
BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
@@ -765,7 +765,7 @@ BOOST_AUTO_TEST_CASE(test_LockDirectory)
765765
// Probing lock from our side now should succeed, but not hold on to the lock.
766766
BOOST_CHECK_EQUAL(LockDirectory(dirname, lockname, true), true);
767767

768-
// Try to acquire the lock in the child process, this should be succesful.
768+
// Try to acquire the lock in the child process, this should be successful.
769769
BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
770770
BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
771771
BOOST_CHECK_EQUAL((bool)ch, true);

test/functional/wallet_dump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def read_dump(file_name, addrs, script_addrs, hd_master_addr_old):
4949
# count key types
5050
for addrObj in addrs:
5151
if addrObj['address'] == addr.split(",")[0] and addrObj['hdkeypath'] == keypath and keytype == "label=":
52-
# a labled entry in the wallet should contain both a native address
52+
# a labeled entry in the wallet should contain both a native address
5353
# and the p2sh-p2wpkh address that was added at wallet setup
5454
if len(addr.split(",")) == 2:
5555
addr_list = addr.split(",")

0 commit comments

Comments
 (0)