~kb/wyhash

c920c1c19a7bbcff6c5ba846d0e879142e0ceb76 — kb 3 years ago 4c2085e
Fix spelling in comments
1 files changed, 2 insertions(+), 2 deletions(-)

M src/wyrand.cr
M src/wyrand.cr => src/wyrand.cr +2 -2
@@ 6,7 6,7 @@ require "random/secure"
# Based on the original C implementation by 王一 (Wang Yi).
# https://github.com/wangyi-fudan/wyhash
#
# Provides a 64 bit output based on mix and multply operation. This provides
# Provides a 64 bit output based on mix and multiply operation. This provides
# exceptionly fast performance on modern processors, but may yield slower
# results on older architectures.
struct Wyrand


@@ 56,7 56,7 @@ struct Wyrand
  {% end %}
end

# TODO: BidEndian support. Crystal is currently pinned to LittleEndian so low
# TODO: BigEndian support. Crystal is currently pinned to LittleEndian so low
# priority. This is here as a guard rail for when this changes.
# https://github.com/crystal-lang/crystal/blob/f991977999e61fc18922fc00c3582552d9bf1ec9/src/io/byte_format.cr#L120
{% if IO::ByteFormat::SystemEndian != IO::ByteFormat::LittleEndian %}