From 4104a7b2de9c708c8c2e9af7efdb671d1d67a9e7 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:06:34 -0400 Subject: [PATCH] spelling: satisfies Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- libsrc/miterstroke/src/com/jpexs/graphics/Curve.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/miterstroke/src/com/jpexs/graphics/Curve.java b/libsrc/miterstroke/src/com/jpexs/graphics/Curve.java index 6fa4cf0a4..ba947420a 100644 --- a/libsrc/miterstroke/src/com/jpexs/graphics/Curve.java +++ b/libsrc/miterstroke/src/com/jpexs/graphics/Curve.java @@ -241,7 +241,7 @@ final class Curve { // curve to be broken should be in pts // this will change the contents of pts but not Ts // TODO: There's no reason for Ts to be an array. All we need is a sequence - // of t values at which to subdivide. An array statisfies this condition, + // of t values at which to subdivide. An array satisfies this condition, // but is unnecessarily restrictive. Ts should be an Iterator instead. // Doing this will also make dashing easier, since we could easily make // LengthIterator an Iterator and feed it to this function to simplify