Skip to content

Commit 19b7f2b

Browse files
committed
Merge bitcoin/bitcoin#29471: doc: Fix CI-detected codespell warnings
b03b206 Fix CI-detected codespell warnings (Lőrinc) Pull request description: Split out the typo fixes encountered in bitcoin/bitcoin#29458 to a separate PR. ACKs for top commit: maflcko: ACK b03b206 Tree-SHA512: 99b6fac01ba2ae6e6de9c50d2b481387899844a4b3a77d544c7b8afe7cfd25251a982329688d4739cde8b98ad35afcfd49be7c7cc3dad9bdff1d5915861a206d
2 parents ba90b05 + b03b206 commit 19b7f2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/span_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ BOOST_AUTO_TEST_SUITE(span_tests)
5353
// aren't compatible with Spans at compile time.
5454
//
5555
// Previously there was a bug where writing a SFINAE check for vector<bool> was
56-
// not possible, because in libstdc++ vector<bool> has a data() memeber
56+
// not possible, because in libstdc++ vector<bool> has a data() member
5757
// returning void*, and the Span template guide ignored the data() return value,
5858
// so the template substitution would succeed, but the constructor would fail,
5959
// resulting in a fatal compile error, rather than a SFINAE error that could be

src/wallet/scriptpubkeyman.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class WalletStorage
5252
virtual bool WithEncryptionKey(std::function<bool (const CKeyingMaterial&)> cb) const = 0;
5353
virtual bool HasEncryptionKeys() const = 0;
5454
virtual bool IsLocked() const = 0;
55-
//! Callback function for after TopUp completes containining any scripts that were added by a SPKMan
55+
//! Callback function for after TopUp completes containing any scripts that were added by a SPKMan
5656
virtual void TopUpCallback(const std::set<CScript>&, ScriptPubKeyMan*) = 0;
5757
};
5858

0 commit comments

Comments
 (0)