diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2021-11-25 17:07:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 17:07:44 (GMT) |
commit | 4c9431e9af596af0556e5da0ae99305bafb2b10b (patch) | |
tree | 1d0f5726d23b0f868637ef3023ed7fccc9b2eab0 /tests | |
parent | db57809cf189feb2dd690d55abc2884c95c6fc00 (diff) | |
parent | 4bdfb08b95ede33d41ad4c722f039b957c0dc612 (diff) | |
download | lz4-4c9431e9af596af0556e5da0ae99305bafb2b10b.zip lz4-4c9431e9af596af0556e5da0ae99305bafb2b10b.tar.gz lz4-4c9431e9af596af0556e5da0ae99305bafb2b10b.tar.bz2 |
Merge pull request #1042 from DimitriPapadopoulos/codespell
Fix typos found by codespell
Diffstat (limited to 'tests')
-rw-r--r-- | tests/README.md | 2 | ||||
-rw-r--r-- | tests/frametest.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/README.md b/tests/README.md index 37d7d72..6b8302c 100644 --- a/tests/README.md +++ b/tests/README.md @@ -13,7 +13,7 @@ This directory contains the following programs and scripts: #### `test-lz4-versions.py` - script for testing lz4 interoperability between versions This script creates `versionsTest` directory to which lz4 repository is cloned. -Then all taged (released) versions of lz4 are compiled. +Then all tagged (released) versions of lz4 are compiled. In the following step interoperability between lz4 versions is checked. diff --git a/tests/frametest.c b/tests/frametest.c index b3b4df8..e0fff0e 100644 --- a/tests/frametest.c +++ b/tests/frametest.c @@ -51,7 +51,7 @@ #include "xxhash.h" /* XXH64 */ -/* unoptimized version; solves endianess & alignment issues */ +/* unoptimized version; solves endianness & alignment issues */ static void FUZ_writeLE32 (void* dstVoidPtr, U32 value32) { BYTE* dstPtr = (BYTE*)dstVoidPtr; |