Author: tilman
Date: Mon Aug 25 10:44:37 2025
New Revision: 1927991
Log:
PDFBOX-5660: fix typo, as suggested by Valery Bokov; closes #221
Modified:
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/contentstream/PDFStreamEngine.java
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDocument.java
Modified:
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/contentstream/PDFStreamEngine.java
==============================================================================
---
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/contentstream/PDFStreamEngine.java
Mon Aug 25 10:44:32 2025 (r1927990)
+++
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/contentstream/PDFStreamEngine.java
Mon Aug 25 10:44:37 2025 (r1927991)
@@ -952,7 +952,7 @@ public abstract class PDFStreamEngine
*
* @param operator The unknown operator.
* @param operands The list of operands.
- * @param exception the excpetion which occured when processing the
operator
+ * @param exception the exception which occurred when processing the
operator
*
* @throws IOException if there is an error processing the operator
exception
*/
Modified:
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDocument.java
==============================================================================
--- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDocument.java
Mon Aug 25 10:44:32 2025 (r1927990)
+++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/COSDocument.java
Mon Aug 25 10:44:37 2025 (r1927991)
@@ -150,7 +150,7 @@ public class COSDocument extends COSBase
catch (IOException exception1)
{
LOG.warn(
- "An error occured when creating stream cache. Using memory
only cache as fallback.",
+ "An error occurred when creating stream cache. Using
memory only cache as fallback.",
exception1);
}
try
@@ -159,7 +159,7 @@ public class COSDocument extends COSBase
}
catch (IOException exception2)
{
- LOG.warn("An error occured when creating stream cache for
fallback.", exception2);
+ LOG.warn("An error occurred when creating stream cache for
fallback.", exception2);
}
return null;
}