diff --git a/src/test/span_tests.cpp b/src/test/span_tests.cpp index f6cac10b09..aae61990f7 100644 --- a/src/test/span_tests.cpp +++ b/src/test/span_tests.cpp @@ -53,7 +53,7 @@ BOOST_AUTO_TEST_SUITE(span_tests) // aren't compatible with Spans at compile time. // // Previously there was a bug where writing a SFINAE check for vector was -// not possible, because in libstdc++ vector has a data() memeber +// not possible, because in libstdc++ vector has a data() member // returning void*, and the Span template guide ignored the data() return value, // so the template substitution would succeed, but the constructor would fail, // resulting in a fatal compile error, rather than a SFINAE error that could be diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h index 04f7f89d68..2d83ae556f 100644 --- a/src/wallet/scriptpubkeyman.h +++ b/src/wallet/scriptpubkeyman.h @@ -52,7 +52,7 @@ public: virtual bool WithEncryptionKey(std::function cb) const = 0; virtual bool HasEncryptionKeys() const = 0; virtual bool IsLocked() const = 0; - //! Callback function for after TopUp completes containining any scripts that were added by a SPKMan + //! Callback function for after TopUp completes containing any scripts that were added by a SPKMan virtual void TopUpCallback(const std::set&, ScriptPubKeyMan*) = 0; };