Author: tilman
Date: Fri Oct 10 11:48:50 2025
New Revision: 1929047
Log:
PDFBOX-5660: fix typo, as suggested by Valery Bokov; closes #284
Modified:
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Matrix.java
Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Matrix.java
==============================================================================
--- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Matrix.java
Fri Oct 10 11:48:45 2025 (r1929046)
+++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/Matrix.java
Fri Oct 10 11:48:50 2025 (r1929047)
@@ -381,8 +381,8 @@ public final class Matrix implements Clo
* 0 y 0
* 0 0 1
*
- * @param x The xscale operator.
- * @param y The yscale operator.
+ * @param x The x-scale operator.
+ * @param y The y-scale operator.
* @return A new matrix with just the x/y scaling
*/
public static Matrix getScaleInstance(float x, float y)
@@ -518,7 +518,7 @@ public final class Matrix implements Clo
/**
* Returns the x-shear element of this matrix.
*
- * @return the x-sheard element of the matrix
+ * @return the x-shear element of the matrix
*/
public float getShearX()
{