fixing typo in RenameStructureFieldTask comment: "Created by retype action" -> "Created by Rename Structure Field action"

This commit is contained in:
Solomon Ucko 2025-05-23 18:52:01 -04:00
parent 65b290624e
commit ef4cbad4ec

View file

@ -50,7 +50,7 @@ public class RenameStructFieldTask extends RenameTask {
DataTypeComponent comp = structure.getComponentAt(offset); DataTypeComponent comp = structure.getComponentAt(offset);
if (comp.getDataType() == DataType.DEFAULT) { // Is this just a placeholder if (comp.getDataType() == DataType.DEFAULT) { // Is this just a placeholder
DataType newtype = new Undefined1DataType(); DataType newtype = new Undefined1DataType();
structure.replaceAtOffset(offset, newtype, 1, newName, "Created by retype action"); structure.replaceAtOffset(offset, newtype, 1, newName, "Created by Rename Structure Field action");
} }
else { else {
comp.setFieldName(newName); comp.setFieldName(newName);