summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libjpeg/coderules.doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:04:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:04:08 -0600
commite02e31c8b9d854cd62cbe9799228f6e08e882773 (patch)
tree53303c981d0b20e03c5a2fc8e959fa74adcb90d1 /src/3rdparty/libjpeg/coderules.doc
parent143f194af098d44bf0dd1ebb29e59f30ce48d523 (diff)
downloadtqt3-e02e31c8.tar.gz
tqt3-e02e31c8.zip
Sync with latest script
Diffstat (limited to 'src/3rdparty/libjpeg/coderules.doc')
-rw-r--r--src/3rdparty/libjpeg/coderules.doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/libjpeg/coderules.doc b/src/3rdparty/libjpeg/coderules.doc
index aa87d6ad..0ab5d9bd 100644
--- a/src/3rdparty/libjpeg/coderules.doc
+++ b/src/3rdparty/libjpeg/coderules.doc
@@ -39,7 +39,7 @@ source code by using macros to substitute shorter names.)
We use function prototypes everywhere; we rely on automatic source code
transformation to feed prototype-less C compilers. Transformation is done
by the simple and portable tool 'ansi2knr.c' (courtesy of Ghostscript).
-ansi2knr is not very bright, so it imposes a format retquirement on function
+ansi2knr is not very bright, so it imposes a format requirement on function
declarations: the function name MUST BEGIN IN COLUMN 1. Thus all functions
should be written in the following style:
@@ -85,7 +85,7 @@ so that the result is guaranteed to be of type size_t.
The JPEG library is intended to be used within larger programs. Furthermore,
we want it to be reentrant so that it can be used by applications that process
-multiple images concurrently. The following rules support these retquirements:
+multiple images concurrently. The following rules support these requirements:
1. Avoid direct use of file I/O, "malloc", error report printouts, etc;
pass these through the common routines provided.