From c12c9797237685fe1cd1880ca364868607f57f50 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:01:33 -0400 Subject: [PATCH] spelling: descriptor Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- .../src/com/jpexs/decompiler/flash/ecma/EcmaScript.java | 2 +- libsrc/gif/src/net/weiner/kevin/AnimatedGifEncoder.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/ecma/EcmaScript.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/ecma/EcmaScript.java index eb9a07bdc..ddb1d1150 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/ecma/EcmaScript.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/ecma/EcmaScript.java @@ -117,7 +117,7 @@ public class EcmaScript { * @return Value */ public static Object object_get(ObjectType o, String p) { - //TODO: isDataDesciptor, etc. ECMA 8.12.3 + //TODO: isDataDescriptor, etc. ECMA 8.12.3 return object_getProperty(o, p); } diff --git a/libsrc/gif/src/net/weiner/kevin/AnimatedGifEncoder.java b/libsrc/gif/src/net/weiner/kevin/AnimatedGifEncoder.java index bbc08ca56..fc2e094f9 100644 --- a/libsrc/gif/src/net/weiner/kevin/AnimatedGifEncoder.java +++ b/libsrc/gif/src/net/weiner/kevin/AnimatedGifEncoder.java @@ -153,7 +153,7 @@ public class AnimatedGifEncoder { int[] pixels = getImagePixels(im); // convert to correct format if necessary analyzePixels(pixels); // build color table & map pixels if (firstFrame) { - writeLSD(); // logical screen descriptior + writeLSD(); // logical screen descriptor writePalette(); // global color table if (repeat >= 0) { // use NS app extension to indicate reps