From ecbbd5c907198536cdabb5f7298a0a53d58f7019 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:08:38 -0400 Subject: [PATCH] spelling: extensions Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- libsrc/gif/src/net/kroo/elliot/GifSequenceWriter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/gif/src/net/kroo/elliot/GifSequenceWriter.java b/libsrc/gif/src/net/kroo/elliot/GifSequenceWriter.java index d1ec261c4..b3bbf82dc 100644 --- a/libsrc/gif/src/net/kroo/elliot/GifSequenceWriter.java +++ b/libsrc/gif/src/net/kroo/elliot/GifSequenceWriter.java @@ -72,7 +72,7 @@ public class GifSequenceWriter { IIOMetadataNode commentsNode = getNode(root, "CommentExtensions"); commentsNode.setAttribute("CommentExtension", "Created by MAH"); - IIOMetadataNode appEntensionsNode = getNode( + IIOMetadataNode appExtensionsNode = getNode( root, "ApplicationExtensions"); @@ -85,7 +85,7 @@ public class GifSequenceWriter { child.setUserObject(new byte[]{ 0x1, (byte) (loop & 0xFF), (byte) ((loop >> 8) & 0xFF)}); - appEntensionsNode.appendChild(child); + appExtensionsNode.appendChild(child); imageMetaData.setFromTree(metaFormatName, root);