summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2010-02-04 21:31:17 +0000
committerroot <root>2010-02-04 21:31:17 +0000
commita7c01fa037a0965364cfd1fe2d19c158aa2bafaf (patch)
tree7d8476923a9910406393b7983b92d563600f6eba
parentf280629860026509e0fbec24f963b2e8ea7e431b (diff)
spelling fixes by soren jacobsen
-rw-r--r--README4
-rw-r--r--lzfP.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index b5379a3..0734ebe 100644
--- a/README
+++ b/README
@@ -10,7 +10,7 @@ DESCRIPTION
A C♯ implementation without external dependencies is available, too.
- I do not know for certain wether any patents in any countries apply
+ I do not know for certain whether any patents in any countries apply
to this algorithm, but at the moment it is believed that it is free
from any patents. More importantly, it is also free to use in every
software package (see LICENSE).
@@ -20,7 +20,7 @@ DESCRIPTION
NOTE: This package contains a very bare-bones command-line utility
which is neither optimized for speed nor for compression. This library
- is really intented to be used inside larger programs.
+ is really intended to be used inside larger programs.
AUTHOR
This library was written by Marc Lehmann <schmorp@schmorp.de> (See also
diff --git a/lzfP.h b/lzfP.h
index d533f18..10d804e 100644
--- a/lzfP.h
+++ b/lzfP.h
@@ -93,7 +93,7 @@
/*
* Avoid assigning values to errno variable? for some embedding purposes
- * (linux kernel for example), this is neccessary. NOTE: this breaks
+ * (linux kernel for example), this is necessary. NOTE: this breaks
* the documentation in lzf.h.
*/
#ifndef AVOID_ERRNO
@@ -101,7 +101,7 @@
#endif
/*
- * Wether to pass the LZF_STATE variable as argument, or allocate it
+ * Whether to pass the LZF_STATE variable as argument, or allocate it
* on the stack. For small-stack environments, define this to 1.
* NOTE: this breaks the prototype in lzf.h.
*/
@@ -110,11 +110,11 @@
#endif
/*
- * Wether to add extra checks for input validity in lzf_decompress
+ * Whether to add extra checks for input validity in lzf_decompress
* and return EINVAL if the input stream has been corrupted. This
* only shields against overflowing the input buffer and will not
* detect most corrupted streams.
- * This check is not normally noticable on modern hardware
+ * This check is not normally noticeable on modern hardware
* (<1% slowdown), but might slow down older cpus considerably.
*/
#ifndef CHECK_INPUT