]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
docs: update docs a little
authorzooko <zooko@zooko.com>
Mon, 5 Jan 2009 17:20:57 +0000 (22:50 +0530)
committerzooko <zooko@zooko.com>
Mon, 5 Jan 2009 17:20:57 +0000 (22:50 +0530)
Ignore-this: fd7bd93bcb6a38204a5415174c0a8331

darcs-hash:035d050585b9a4be720208b8f4f1f3ea7bd49126

zfec/README.txt
zfec/zfec/fec.c

index 7c9aca67882602b43b0cb59c362302c1f4a6a5ac..72bbcaa14e7649928b6041bccbeba0e3d8cc3560 100644 (file)
@@ -113,8 +113,8 @@ Guard" for encryption or "sha256sum" for integrity.  It is important to do
 things in order: first archive, then compress, then either encrypt or sha256sum,
 then erasure code.  Note that if GNU Privacy Guard is used for privacy, then it
 will also ensure integrity, so the use of sha256sum is unnecessary in that case.
-Note that if 7z is used for archiving then it also does very good compression,
-so you don't need a separate compressor in that case.
+Note that if 7z is used for archiving then it also does compression, so you 
+don't need a separate compressor in that case.
 
 
  * Performance Measurements
index 04a71324704cf05bc899beede576d8cdf89e0144..6763bdbd668e0df0fd6243c16690bf326263b18c 100644 (file)
@@ -456,8 +456,8 @@ fec_new(unsigned k, unsigned n) {
     return retval;
 }
 
-/* To make sure that we stay within cache in the inner loops of fec_encode()
-   and fec_decode(). */
+/* To make sure that we stay within cache in the inner loops of fec_encode().  (It would
+   probably help to also do this for fec_decode(). */
 #ifndef STRIDE
 #define STRIDE 8192
 #endif