From c0c91847a64f0b23f436751d2bd53e5320e9be46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 6 Nov 2022 13:05:22 +0100 Subject: [PATCH] typo --- .../decompiler/flash/console/CommandLineArgumentParser.java | 4 ++-- .../decompiler/flash/gui/tagtree/TagTreeContextMenu.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 4ed59f395..022484b62 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -543,7 +543,7 @@ public class CommandLineArgumentParser { if (filter == null || filter.equals("replacecharacter")) { out.println(" " + (cnt++) + ") -replaceCharacter [ ]..."); - out.println(" ...replaces a character tag with another chatacter tag from the same SWF"); + out.println(" ...replaces a character tag with another character tag from the same SWF"); } if (filter == null || filter.equals("replacecharacterid")) { @@ -551,7 +551,7 @@ public class CommandLineArgumentParser { out.println(" " + (cnt++) + ") -replaceCharacterId (pack|sort)"); out.println(" ...replaces the character id with "); out.println(" ...pack: removes the spaces between the character ids (1,4,3 => 1,3,2)"); - out.println(" ...sort: assigns increasing IDs to the chatacter tags + pack (1,4,3 => 1,2,3)"); + out.println(" ...sort: assigns increasing IDs to the character tags + pack (1,4,3 => 1,2,3)"); out.println(" DO NOT PUT space between comma (,) and next value."); } diff --git a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java index 49fbe4dbb..1e9d28141 100644 --- a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java +++ b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java @@ -1148,7 +1148,7 @@ public class TagTreeContextMenu extends JPopupMenu { if (swf.getCharacter(characterId) != null) { int newCharacterId = swf.getNextCharacterId(); characterTag.setCharacterId(newCharacterId); - logger.log(Level.WARNING, "Target SWF already contained chatacter tag with id = {0} => id changed to {1}", new Object[]{characterId, newCharacterId}); + logger.log(Level.WARNING, "Target SWF already contained character tag with id = {0} => id changed to {1}", new Object[]{characterId, newCharacterId}); return newCharacterId; }