aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2022-02-02 15:31:33 +0100
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2022-02-02 21:07:32 +0100
commite813176bc02c32e26e109a1b86333ae181cc0601 (patch)
tree0620b581bc203309432f5db7b754e5cc1722b378 /examples
parentbc6403708cb0c34e684f3b88701c7534837a2581 (diff)
downloadqpdf-e813176bc02c32e26e109a1b86333ae181cc0601.tar.zst
Fix some doc typos
Diffstat (limited to 'examples')
-rw-r--r--examples/pdf-custom-filter.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pdf-custom-filter.cc b/examples/pdf-custom-filter.cc
index 55ace6e2..ea08de3a 100644
--- a/examples/pdf-custom-filter.cc
+++ b/examples/pdf-custom-filter.cc
@@ -14,7 +14,7 @@
// uses the pattern of having the stream data provider class use a
// second QPDF instance with copies of streams from the original QPDF
// so that the stream data provider can access the original stream
-// data. This is implement very efficiently inside the qpdf library as
+// data. This is implemented very efficiently inside the qpdf library as
// the second QPDF instance knows how to read the stream data from the
// original input file, so no extra copies of the original stream data
// are made.
@@ -196,7 +196,7 @@ class StreamReplacer: public QPDFObjectHandle::StreamDataProvider
// pipeline and passes nullptr to dict_updates. In this mode,
// the stream dictionary has already been altered, and the
// original stream data is no longer directly accessible. Trying
- // to retrieve the stream data would be an infinite loop because
+ // to retrieve the stream data would cause an infinite loop because
// it would just end up calling provideStreamData again. This is
// why maybeReplace uses a stashed copy of the original stream.