@@ 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 %}