chore: Fix some typos in comments (#6040)

This commit is contained in:
sunnyraindy
2025-11-19 09:21:35 +08:00
committed by GitHub
parent d9c27da529
commit ad37461ab2
14 changed files with 16 additions and 16 deletions

View File

@@ -546,7 +546,7 @@ operator<=>(base_uint<Bits, Tag> const& lhs, base_uint<Bits, Tag> const& rhs)
// This comparison might seem wrong on a casual inspection because it
// compares data internally stored as std::uint32_t byte-by-byte. But
// note that the underlying data is stored in big endian, even if the
// plaform is little endian. This makes the comparison correct.
// platform is little endian. This makes the comparison correct.
//
// FIXME: use std::lexicographical_compare_three_way once support is
// added to MacOS.