Skip to content

Commit 7034fac

Browse files
committed
Whitespace, comment.
1 parent 0f8efcb commit 7034fac

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

include/bitcoin/system/impl/data/array_cast.ipp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ template <typename To, typename From,
178178
if_integral_integer<From>,
179179
if_integral_array<To>>
180180
inline std_vector<std::reference_wrapper<To>>
181-
unsafe_vector_cast(From* bytes, size_t count) NOEXCEPT
181+
unsafe_vector_cast(From* bytes, size_t count) NOEXCEPT
182182
{
183183
using inner_type = array_element<To>;
184184
constexpr auto inner_count = array_count<To>;

include/bitcoin/system/impl/endian/integrals.ipp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <bitcoin/system/define.hpp>
2424
#include <bitcoin/system/math/math.hpp>
2525

26-
// These are euqally-efficient generalizations of the common practice of
26+
// These are equally-efficient generalizations of the common practice of
2727
// shifting with or-ing to construct integers from bytes, and shifting with
2828
// masking to obtain bytes from integers. The byte<offset> template performs
2929
// integer byte extraction (zero offset is low order byte). These avoid byte

include/bitcoin/system/impl/hash/sha/algorithm_parsing.ipp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ output(const state_t& state) NOEXCEPT
290290
else if constexpr (bc::is_little_endian)
291291
{
292292
// Below could be optimized to remove conversions that truncate, but
293-
// 224 truncates on a half word boundary, complicating implementation.
293+
// 224 truncates on a half word boundary, complicating implementation.
294294

295295
if constexpr (SHA::strength != 160)
296296
{

0 commit comments

Comments
 (0)