aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/Pipeline.hh4
-rw-r--r--include/qpdf/Pl_Buffer.hh2
-rw-r--r--include/qpdf/QPDF.hh2
-rw-r--r--include/qpdf/QPDFWriter.hh2
4 files changed, 5 insertions, 5 deletions
diff --git a/include/qpdf/Pipeline.hh b/include/qpdf/Pipeline.hh
index cfc00471..d925d9c6 100644
--- a/include/qpdf/Pipeline.hh
+++ b/include/qpdf/Pipeline.hh
@@ -19,10 +19,10 @@
// The client is required to call finish() before destroying a
// Pipeline in order to avoid loss of data. A Pipeline class should
// not throw an exception in the destructor if this hasn't been done
-// though since doing so causes too mcuh trouble when deleting
+// though since doing so causes too much trouble when deleting
// pipelines during error conditions.
//
-// Some pipelines are resuable (i.e., you can call write() after
+// Some pipelines are reusable (i.e., you can call write() after
// calling finish() and can call finish() multiple times) while others
// are not. It is up to the caller to use a pipeline according to its
// own restrictions.
diff --git a/include/qpdf/Pl_Buffer.hh b/include/qpdf/Pl_Buffer.hh
index abbd5241..c16440eb 100644
--- a/include/qpdf/Pl_Buffer.hh
+++ b/include/qpdf/Pl_Buffer.hh
@@ -13,7 +13,7 @@
// accumulated so far. getBuffer() may be called only after calling
// finish() and before calling any subsequent write(). At that point,
// a dynamically allocated Buffer object is returned and the internal
-// buffer is reset. The caller is responseible for deleting the
+// buffer is reset. The caller is responsible for deleting the
// returned Buffer.
//
// For this pipeline, "next" may be null. If a next pointer is
diff --git a/include/qpdf/QPDF.hh b/include/qpdf/QPDF.hh
index f57d4c94..6081d18b 100644
--- a/include/qpdf/QPDF.hh
+++ b/include/qpdf/QPDF.hh
@@ -47,7 +47,7 @@ class QPDF
void setIgnoreXRefStreams(bool);
// By default, any warnings are issued to stderr as they are
- // encountered. If this is called with a true value, reporitng of
+ // encountered. If this is called with a true value, reporting of
// warnings is suppressed. You may still retrieve warnings by
// calling getWarnings.
void setSuppressWarnings(bool);
diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh
index 5cb1f85b..217115e8 100644
--- a/include/qpdf/QPDFWriter.hh
+++ b/include/qpdf/QPDFWriter.hh
@@ -190,7 +190,7 @@ class QPDFWriter
// Calls finish on the current pipeline and pops the pipeline
// stack until the top of stack is a previous active top of stack,
- // and restores the pipeline to that point. Deletes any piplines
+ // and restores the pipeline to that point. Deletes any pipelines
// that it pops. If the bp argument is non-null and any of the
// stack items are of type Pl_Buffer, the buffer is retrieved.
void popPipelineStack(PointerHolder<Buffer>* bp = 0);