aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_QPDFTokenizer.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-02-21 03:54:31 +0100
committerJay Berkenbilt <ejb@ql.org>2009-02-21 03:54:31 +0100
commit91cb7c0a585ccaf8eab389da9f7351534440ee56 (patch)
tree17acbf824a026228382ec1236e311199024a02b9 /libqpdf/Pl_QPDFTokenizer.cc
parent0b2288c19d514e18449feb8f43fc1350a10241a1 (diff)
downloadqpdf-91cb7c0a585ccaf8eab389da9f7351534440ee56.tar.zst
fix many typos in comments and strings
git-svn-id: svn+q:///qpdf/trunk@651 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf/Pl_QPDFTokenizer.cc')
-rw-r--r--libqpdf/Pl_QPDFTokenizer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/Pl_QPDFTokenizer.cc b/libqpdf/Pl_QPDFTokenizer.cc
index 27b8c680..96328408 100644
--- a/libqpdf/Pl_QPDFTokenizer.cc
+++ b/libqpdf/Pl_QPDFTokenizer.cc
@@ -58,7 +58,7 @@ Pl_QPDFTokenizer::processChar(char ch)
{
if (this->pass_through)
{
- // We're not noramlizing anymore -- just write this without
+ // We're not normalizing anymore -- just write this without
// looking at it.
writeNext(&ch, 1);
return;
@@ -79,12 +79,12 @@ Pl_QPDFTokenizer::processChar(char ch)
{
// Uh oh.... we're not sophisticated enough to handle
// inline images safely. We'd have to to set up all the
- // filters and pipe the iamge data through it until the
+ // filters and pipe the image data through it until the
// filtered output was the right size for an image of the
// specified dimensions. Then we'd either have to write
// out raw image data or continue to write filtered data,
// resuming normalization when we get to the end.
- // Insetad, for now, we'll just turn off noramlization for
+ // Instead, for now, we'll just turn off normalization for
// the remainder of this stream.
this->pass_through = true;
if (this->unread_char)