Skip to content

Commit d918eb7

Browse files
Fix typos
1 parent 228b086 commit d918eb7

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
@@ -688,7 +688,7 @@ BOOST_AUTO_TEST_CASE(test_LockDirectory)
688688
thr.join();
689689
BOOST_CHECK_EQUAL(threadresult, true);
690690
#ifndef WIN32
691-
// Try to aquire lock in child process while we're holding it, this should fail.
691+
// Try to acquire lock in child process while we're holding it, this should fail.
692692
char ch;
693693
BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
694694
BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
@@ -699,7 +699,7 @@ BOOST_AUTO_TEST_CASE(test_LockDirectory)
699699
// Probing lock from our side now should succeed, but not hold on to the lock.
700700
BOOST_CHECK_EQUAL(LockDirectory(dirname, lockname, true), true);
701701

702-
// Try to acquire the lock in the child process, this should be succesful.
702+
// Try to acquire the lock in the child process, this should be successful.
703703
BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
704704
BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
705705
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)