diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/cmd/data/AbstractCreateStructureCmd.java b/Ghidra/Features/Base/src/main/java/ghidra/app/cmd/data/AbstractCreateStructureCmd.java index 81b6a4be1a..1500f53259 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/app/cmd/data/AbstractCreateStructureCmd.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/app/cmd/data/AbstractCreateStructureCmd.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -97,7 +96,7 @@ public abstract class AbstractCreateStructureCmd implements Command { * structure with data and then returning the data type object that * represents the newly created structure. * - * @param structureInfo The stucture info object that describes the newly + * @param structureInfo The structure info object that describes the newly * created structure. * @return The new data type that represents the created structure. */ diff --git a/Ghidra/Processors/JVM/src/main/java/ghidra/javaclass/format/attributes/ModulePackagesAttribute.java b/Ghidra/Processors/JVM/src/main/java/ghidra/javaclass/format/attributes/ModulePackagesAttribute.java index b0985c927c..55e4fff8f8 100644 --- a/Ghidra/Processors/JVM/src/main/java/ghidra/javaclass/format/attributes/ModulePackagesAttribute.java +++ b/Ghidra/Processors/JVM/src/main/java/ghidra/javaclass/format/attributes/ModulePackagesAttribute.java @@ -28,7 +28,7 @@ import ghidra.util.exception.DuplicateNameException; *
* The {@code ModulePackages} attribute indicates all the packages of a module that are * exported or opened by the {@code Module} attribute, as well as all the package of the service - * implementations recored in the {@code Module} attribute. + * implementations recorded in the {@code Module} attribute. */ public class ModulePackagesAttribute extends AbstractAttributeInfo {