Skip to content

Commit b03b206

Browse files
author
Lőrinc
committed
Fix CI-detected codespell warnings
1 parent 1ac627c commit b03b206

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)