Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: fix typos #1967

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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