Skip to content

Commit

Permalink
Merge pull request #1967 from xiaoxianBoy/fix-typos
Browse files Browse the repository at this point in the history
chore: fix typos
  • Loading branch information
Maxnflaxl authored Apr 19, 2024
2 parents 5b31d3e + 5116831 commit 34487cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/libbitcoin/src/machine/operation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static bool data_from_number_token(data_chunk& out_data,
}
}

// The removal of spaces in v3 data is a compatability break with our v2.
// The removal of spaces in v3 data is a compatibility break with our v2.
bool operation::from_string(const std::string& mnemonic)
{
reset();
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/libbitcoin/src/unicode/unicode_streambuf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ std::streambuf::int_type unicode_streambuf::overflow(
std::streambuf::int_type character)
{
// Add a single explicitly read byte to the buffer.
// The narrow buffer is underexposed by 1 byte to accomodate this.
// The narrow buffer is underexposed by 1 byte to accommodate this.
if (character != traits_type::eof())
{
*pptr() = static_cast<char>(character);
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/libbitcoin/src/utility/socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void socket::stop()
// Critical Section.
unique_lock lock(mutex_);

// Signal the end of oustanding async socket functions (read).
// Signal the end of outstanding async socket functions (read).
socket_.shutdown(asio::socket::shutdown_both, ignore);

// BUGBUG: this is documented to fail on Windows XP and Server 2003.
Expand Down

0 comments on commit 34487cc

Please sign in to comment.