Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Typo fixes (comments, non-critical) #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions meow_hash_x64_aesni.h
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,9 @@ MeowHash(void *Seed128Init, meow_umm Len, void *SourceInit)
palignr(xmm8, xmm11, 15);
palignr(xmm10, xmm11, 1);

// NOTE(casey): We have room for a 128-bit nonce and a 64-bit none here, but
// NOTE(casey): We have room for a 128-bit nonce and a 64-bit nonce here, but
// the decision was made to leave them zero'd so as not to confuse people
// about hwo to use them or what security implications they had.
// about how to use them or what security implications they had.
pxor_clear(xmm12, xmm12);
pxor_clear(xmm13, xmm13);
pxor_clear(xmm14, xmm14);
Expand Down