Skip to content

Commit 1112035

Browse files
Ikko Ashimineppyordanov
authored andcommitted
doc: fix various typos
Co-authored-by: Peter Yordanov <[email protected]>
1 parent e864084 commit 1112035

18 files changed

+21
-21
lines changed

depends/packages/qt.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ endef
217217
#
218218
# 7. In clang.conf, swap out clang & clang++, for our compiler + flags. See #17466.
219219
#
220-
# 8. Adjust a regex in toolchain.prf, to accomodate Guix's usage of
220+
# 8. Adjust a regex in toolchain.prf, to accommodate Guix's usage of
221221
# CROSS_LIBRARY_PATH. See #15277.
222222
define $(package)_preprocess_cmds
223223
patch -p1 -i $($(package)_patch_dir)/freetype_back_compat.patch && \

depends/patches/fontconfig/gperf_header_regen.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ commit 7b6eb33ecd88768b28c67ce5d2d68a7eed5936b6
22
Author: fanquake <[email protected]>
33
Date: Tue Aug 25 14:34:53 2020 +0800
44

5-
Remove rule that causes inadvertant header regeneration
5+
Remove rule that causes inadvertent header regeneration
66

77
Otherwise the makefile will needlessly attempt to re-generate the
88
headers with gperf. This can be dropped once the upstream build is fixed.

depends/patches/native_cctools/ld64_disable_threading.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Date: Tue Aug 18 01:20:24 2020 +0000
88
differently based on which files have already been parsed. This is more
99
likely to occur on systems with more CPUs.
1010

11-
Just disable threading for now. There is no noticable slowdown.
11+
Just disable threading for now. There is no noticeable slowdown.
1212

1313
See #9891.
1414

depends/patches/qt/freetype_back_compat.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Date: Tue Aug 18 15:15:08 2020 +0800
99
backwards-compatibility.
1010

1111
Qt 5.9 introduced a call to FT_Get_Font_Format(). Replace it with FT_Get_X11_Font_Format()
12-
in order to remain compatibile with older freetype, which is still used by e.g. Ubuntu Trusty.
12+
in order to remain compatible with older freetype, which is still used by e.g. Ubuntu Trusty.
1313

1414
See #14348.
1515

src/bench/verify_script.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static void VerifyScriptBench(benchmark::Bench& bench)
2424
const int flags = SCRIPT_VERIFY_WITNESS | SCRIPT_VERIFY_P2SH;
2525
const int witnessversion = 0;
2626

27-
// Keypair.
27+
// Key pair.
2828
CKey key;
2929
static const std::array<unsigned char, 32> vchKey = {
3030
{

src/core_io.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bool DecodeHexBlockHeader(CBlockHeader&, const std::string& hex_header);
3030
/**
3131
* Parse a hex string into 256 bits
3232
* @param[in] strHex a hex-formatted, 64-character string
33-
* @param[out] result the result of the parasing
33+
* @param[out] result the result of the parsing
3434
* @returns true if successful, false if not
3535
*
3636
* @see ParseHashV for an RPC-oriented version of this

src/core_read.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ static bool DecodeTx(CMutableTransaction& tx, const std::vector<unsigned char>&
128128
{
129129
// General strategy:
130130
// - Decode both with extended serialization (which interprets the 0x0001 tag as a marker for
131-
// the presense of witnesses) and with legacy serialization (which interprets the tag as a
131+
// the presence of witnesses) and with legacy serialization (which interprets the tag as a
132132
// 0-input 1-output incomplete transaction).
133133
// - Restricted by try_no_witness (which disables legacy if false) and try_witness (which
134134
// disables extended if false).

src/merkleblock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ uint256 CPartialMerkleTree::CalcHash(int height, unsigned int pos, const std::ve
5959
//if we do not have this assert, we can hit a memory access violation when indexing into vTxid
6060
assert(vTxid.size() != 0);
6161
if (height == 0) {
62-
// hash at height 0 is the txids themself
62+
// hash at height 0 is the txids themselves
6363
return vTxid[pos];
6464
} else {
6565
// calculate left hash

src/net_processing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ struct Peer {
6464

6565
/** Protects block inventory data members */
6666
Mutex m_block_inv_mutex;
67-
/** List of blocks that we'll anounce via an `inv` message.
67+
/** List of blocks that we'll announce via an `inv` message.
6868
* There is no final sorting before sending, as they are always sent
6969
* immediately and in the order requested. */
7070
std::vector<uint256> m_blocks_for_inv_relay GUARDED_BY(m_block_inv_mutex);

src/netaddress.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ class CSubNet
483483
READWRITE(obj.network);
484484
if (obj.network.IsIPv4()) {
485485
// Before commit 102867c587f5f7954232fb8ed8e85cda78bb4d32, CSubNet used the last 4 bytes of netmask
486-
// to store the relevant bytes for an IPv4 mask. For compatiblity reasons, keep doing so in
486+
// to store the relevant bytes for an IPv4 mask. For compatibility reasons, keep doing so in
487487
// serialized form.
488488
unsigned char dummy[12] = {0};
489489
READWRITE(dummy);

0 commit comments

Comments
 (0)