From d48bbf9eeb30ab14d8f47d400444eb05cfd99bff Mon Sep 17 00:00:00 2001
From: Josh Soref <2119212+jsoref@users.noreply.github.com>
Date: Tue, 22 Oct 2024 08:26:13 -0400
Subject: [PATCH] spelling: with
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
---
.../avi/src/org/monte/media/math/IntMath.java | 24 +++++++++----------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/libsrc/avi/src/org/monte/media/math/IntMath.java b/libsrc/avi/src/org/monte/media/math/IntMath.java
index c9cfb0d0d..e504f0f1e 100644
--- a/libsrc/avi/src/org/monte/media/math/IntMath.java
+++ b/libsrc/avi/src/org/monte/media/math/IntMath.java
@@ -30,8 +30,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 && b==0.
*
- * @param a value with with the GCD is to be computed.
- * @param b value with with the GCD is to be computed.
+ * @param a value with the GCD is to be computed.
+ * @param b value with the GCD is to be computed.
* @return GCD(a, b)
*/
public static int gcd(int a, int b) {
@@ -54,8 +54,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 && b==0.
*
- * @param a value with with the GCD is to be computed.
- * @param b value with with the GCD is to be computed.
+ * @param a value with the GCD is to be computed.
+ * @param b value with the GCD is to be computed.
* @return GCD(a, b)
*/
public static long gcd(long a, long b) {
@@ -78,8 +78,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 && b==0.
*
- * @param a value with with the GCD is to be computed.
- * @param b value with with the GCD is to be computed.
+ * @param a value with the GCD is to be computed.
+ * @param b value with the GCD is to be computed.
* @return GCD(a, b)
*/
public static BigInteger gcd(BigInteger a, BigInteger b) {
@@ -103,8 +103,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 || b==0.
*
- * @param a value with with the SCM is to be computed.
- * @param b value with with the SCM is to be computed.
+ * @param a value with the SCM is to be computed.
+ * @param b value with the SCM is to be computed.
* @return SCM(a, b)
*/
public static int scm(int a, int b) {
@@ -140,8 +140,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 || b==0.
*
- * @param a value with with the SCM is to be computed.
- * @param b value with with the SCM is to be computed.
+ * @param a value with the SCM is to be computed.
+ * @param b value with the SCM is to be computed.
* @return SCM(a, b)
*/
public static long scm(long a, long b) {
@@ -180,8 +180,8 @@ public class IntMath {
* abs(a) and abs(b). Returns 0 if
* a==0 || b==0.
*
- * @param a value with with the SCM is to be computed.
- * @param b value with with the SCM is to be computed.
+ * @param a value with the SCM is to be computed.
+ * @param b value with the SCM is to be computed.
* @return SCM(a, b)
*/
public static BigInteger scm(BigInteger a, BigInteger b) {