]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
spelling-fixes, as of lintian.debian.org 187/head
authorklemens <ka7@github.com>
Mon, 16 May 2016 20:23:24 +0000 (22:23 +0200)
committerklemens <ka7@github.com>
Mon, 16 May 2016 20:23:24 +0000 (22:23 +0200)
lib/compress/huf_compress.c
lib/compress/zbuff_compress.c
programs/xxhash.c

index d126305c6f4f817a9e6f048e2d7af7d50a5931d1..695b66dae318940bb87d80c0099f4910e40377cf 100644 (file)
@@ -116,7 +116,7 @@ size_t HUF_writeCTable (void* dst, size_t maxDstSize,
     if (size >= 128) return ERROR(GENERIC);   /* should never happen, since maxSymbolValue <= 255 */
     if ((size <= 1) || (size >= maxSymbolValue/2)) {
         if (size==1) {  /* RLE */
-            /* only possible case : serie of 1 (because there are at least 2) */
+            /* only possible case : series of 1 (because there are at least 2) */
             /* can only be 2^n or (2^n-1), otherwise not an huffman tree */
             BYTE code;
             switch(maxSymbolValue)
index 260aca0870ef9ce77ab066002f6ff9f668d7f157..fcbfbb95ba2a9683cf91d49824cc028a32cf08f9 100644 (file)
@@ -81,7 +81,7 @@ static size_t const ZBUFF_endFrameSize = ZSTD_BLOCKHEADERSIZE;
 
 typedef enum { ZBUFFcs_init, ZBUFFcs_load, ZBUFFcs_flush } ZBUFF_cStage;
 
-/* *** Ressources *** */
+/* *** Resources *** */
 struct ZBUFF_CCtx_s {
     ZSTD_CCtx* zc;
     char*  inBuff;
index 2a66e251a9c98aa88bf92e5adc998c534a6f83cd..92df90295232aee9038ef8faeecee33ae7ab7c72 100644 (file)
@@ -65,7 +65,7 @@ You can contact the author at :
 /* #define XXH_ACCEPT_NULL_INPUT_POINTER 1 */
 
 /*!XXH_FORCE_NATIVE_FORMAT :
- * By default, xxHash library provides endian-independant Hash values, based on little-endian convention.
+ * By default, xxHash library provides endian-independent Hash values, based on little-endian convention.
  * Results are therefore identical for little-endian and big-endian CPU.
  * This comes at a performance cost for big-endian CPU, since some swapping is required to emulate little-endian format.
  * Should endian-independance be of no importance for your application, you may set the #define below to 1,