diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java index 84b9a3b82..f151fb415 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java @@ -1714,7 +1714,7 @@ public final class SWF implements SWFContainerItem, Timelined, Openable { /** * Gets all tags with specified type id. * - * @param tagId Identificator of tag type + * @param tagId Identifier of tag type * @return List of tags */ public List getTagData(int tagId) { diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java index cf38b2347..76d62fb92 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java @@ -37,7 +37,7 @@ import org.w3c.dom.Element; public abstract class FILTER implements Serializable { /** - * Identificator of type of the filter + * Identifier of type of the filter */ @SWFType(BasicType.UI8) public int id; @@ -45,7 +45,7 @@ public abstract class FILTER implements Serializable { /** * Constructor * - * @param id Type identificator + * @param id Type identifier */ public FILTER(int id) { this.id = id;